# 查询登陆配置
接口应在服务器端调用,详细说明参见服务端API。
# 接口说明
# 接口英文名
weDataGetLoginConfig
# 功能描述
查询服务商登录配置
# 调用方式
# HTTPS 调用
POST https://api.weixin.qq.com/wedata/wedata_get_login_config?access_token=ACCESS_TOKEN
# 请求参数
属性 | 类型 | 必填 | 说明 |
---|---|---|---|
access_token | string | 是 | 接口调用凭证,该参数为 URL 参数,非 Body 参数。使用component_access_token |
# 返回参数
属性 | 类型 | 说明 | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
errcode | number | 错误码 | |||||||||||||
errmsg | string | 错误信息 | |||||||||||||
component_appid | string | 服务商appid | |||||||||||||
component_nickname | string | 服务商昵称 | |||||||||||||
recheck_url | string | 反查地址 | |||||||||||||
appinfo | array<object> | 关联小程序appid,没配置时无返回 | |||||||||||||
|
# 调用示例
示例说明: HPPTS调用示例
# 请求数据示例
POST https://api.weixin.qq.com/wedata/wedata_get_login_config?access_token=ACCESS_TOKEN
# 返回数据示例
{
"errcode": 0,
"errmsg": "OK",
"component_appid": "wxxxxxxxxxxxx",
"component_nickname": "example",
"recheck_url": "url address",
"appinfo": [
{
"appid": "yyyyyyyyyyyyy",
"nickname": "associate_app"
}
]
}
# 错误码
错误码 | 错误码取值 | 解决方案 |
---|---|---|
-1 | system error | 系统繁忙,此时请开发者稍候再试 |