除了access_token 其他参数需要以json字符串的格式传参: val JSON = MediaType.parse("application/json; charset=utf-8") val jsonString: String = "{\"width\":430,\"path\":\"pages/livie/liveRoom?liveId=$liveId\",\"scene\":\"pages\"}" val requestBody = RequestBody.create(JSON, jsonString)val request = Request.Builder() .url("https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=$access_token") .post(requestBody) .build()
小程序获取二维码API我通过个API拿到了accessToken [代码]https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET[代码] 然后调用这个API 获取二维码接口B [代码]https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=ACCESS_TOKEN[代码]post 请求写了这两个参数 :scene , page 返回结果一直是这种 [图片] 在线等
2019-06-27