开放平台

网页授权接口

请求地址(POST)

https://openapi.1card1.cn/VipCloud/GetOAuthUrl?openId=[OpenId]&signature=[Signature]&timestamp=[TimeStamp]

字段 说明
OpenId 登陆开放平台生成的OpenId
Signature 签名=md5(OpenId+Secret+Timestamp+data),格式:32位md5大写加密
TimeStamp 发起请求的时间戳,查看标准timestamp

请求说明

data={"redirectUrl":"http://www.baidu.com"}

字段 是否必须 说明
redirectUrl 第三方平台地址

返回说明

成功时返回:

{"status":0, "oAuthUrl":"http://h5.yunhuiyuan.cn/OAuth/Authorize/xxxxxxxx","message":"操作成功"}

失败时返回:

{"status":-1,"message":"操作失败"}

字段 是否必须 说明
status 状态(0,成功;-1,失败)
oAuthUrl 授权地址(status=0返回)
message 绑定失败及原因

网页授权接口 调试