# 获取公众号、小程序绑定链接-开放接口
# 配置信息
例如:
- APPID: xxxxxxxxxxxxxxx
- TOKEN: xxxxxxxxxxxxxxx
- EncodingAESKey: xxxxxxxxxxxxxxx
# 批量设置用户标签接口:
https://chatbot.weixin.qq.com/openapi/getbindlink/{TOKEN}
接口类型:
POST请求
参数说明:
字段 | 类型 | 是否必填 | 描述 |
---|---|---|---|
redirectlink | string | 是 | 完成绑定后希望跳转的URL地址 https://xxx.com/xxx |
比如参数为
<xml>
<redirectlink><![CDATA[https://xxx.com/xxx]]></redirectlink>
</xml>
将加密后的数据,以字段 encrypt 放入 body 中
var cryptor = new WXBizMsgCrypt(TOKEN, EncodingAESKey, APPID);
var data = `<xml>
<redirectlink><![CDATA[https://xxx.com/xxx]]></redirectlink>
</xml>
</xml>`
var encrypted = cryptor.encrypt(data);
curl -X post -d '{"encrypt": encrypted}' "https://chatbot.weixin.qq.com/openapi/getbindlink/{TOKEN}" -H "Content-Type:application/json"
返回值说明:
字段 | 类型 | 描述 |
---|---|---|
code | number | 错误码 |
msg | array | 接口调用信息 |
返回格式:
{
"link": "https://chatbot.weixin.qq.com/auth/mp/bind/redirect?bindtoken=fc980970"
}