獲取授權登錄地址

簡要描述
  • 獲取微信公眾號授權登錄地址redirectUrl
請求url
  • https://www.商城域名.com/index.php?s=/api/wxofficial/oauthUrl
請求方式
  • GET
是否需授權登錄
請求header
參數名 類型 是否必須 示例值 說明
storeId int 必填 10001 商城ID
platform string 必填 H5 當前請求的客戶端(APP、小程序、H5等)
Access-Token string 選填 - 當前登錄用戶的 Token
請求參數
參數名 類型 是否必須 示例值 說明
callbackUrl string 必填 https://localhost/#/pages/login/index/#/pages/login/index 回調地址,獲取微信用戶授權后跳轉的地址(需完整url包含https)
返回示例
{
  "status": 200,
  "message": "success",
  "data": {
    "redirectUrl": "https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxdc7ae596a97f1a97&redirect_uri=https%3A%2F%2Flocalhost%2F%23%2Fpages%2Flogin%2Findex%2F%23%2Fpages%2Flogin%2Findex&response_type=code&scope=snsapi_userinfo&state=a5bbef5f2b1f594d62dcefde5ab47cde&connect_redirect=1#wechat_redirect"
  }
}
返回參數
參數名 類型 示例值 說明
status int 200 請求狀態(200:請求成功;500:請求錯誤/失敗)
message string success 請求結果的信息,默認為 success
data object - 返回的業務數據
data 參數
參數名 類型 示例值 說明
redirectUrl string https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxdc7ae596a97f1a97&redirect_uri=https%3A%2F%2Flocalhost%2F%23%2Fpages%2Flogin%2Findex%2F%23%2Fpages%2Flogin%2Findex&response_type=code&scope=snsapi_userinfo&state=a5bbef5f2b1f594d62dcefde5ab47cde&connect_redirect=1#wechat_redirect 微信授權登錄的地址(OAuth2.0)