- 微信小游戏 为什么互动关系链 getUserInteractiveStorage 数据解密不了?
wx.getUserInteractiveStorage 返回的数据 使用php解密返回 -41003 示例代码是能正常解密的 具体是哪个参数有问题 [图片]
2023-06-09 - 写的demo没有针对安全模式 示例代码也没有
https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/2.0/api/Before_Develop/Technical_Plan.htmlcomponent_appid 写的demo没有针对安全模式 示例代码也没有 建议更新一下调不通
2022-10-20 - 视频号小店进入服务流程问题?
商家从我的服务进入软件携带code 然后调用下面这个接口拿到access_token 获取小店全局唯一后台接口调用凭据(access_token)。调用绝大多数后台接口时都需使用 access_token,开发者需要进行妥善保存。 GET https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET 之后在调用登录验证接口 https://api.weixin.qq.com/wxa/servicemarket/service/login_auth?access_token=xxx 返回了如下数据: Array ( [order_id] => xxx//订单号 [openid] => //用户openid,仅购买主体为微信用户才返回 [appid] => xxxx//小程序appid,仅购买主体为小程序才返回 [service_id] => xxx//服务id [sku_id] => xxx//sku_id [spec_id] => stand //规格ID [errcode] => 0 //错误码 [errmsg] => ok //错误信息 ) 问这个access_token调用其他的接口不生效 比如: 获取快递公司列表 POST https://api.weixin.qq.com/channels/ec/order/deliverycompanylist/get?access_token=ACCESS_TOKEN 返回如下: { "errcode": 48001, "errmsg": "api unauthorized rid: 634fa050-0353c00b-4e999cda" } 还有怎么拿到商店的店铺信息 以及 refresh_token? 是不是需要拿到 component_access_token 再去换取调用接口的assess_token + refresh_token? 因为之前我们小商店的逻辑是 拿到 component_access_token之后在进入登录验证(https://api.weixin.qq.com/product/service/check_auth?component_access_token=?)调用的是此接口 然后在调用 https://api.weixin.qq.com/cgi-bin/component/api_get_authorizer_info?component_access_token=? 获取授权信息 最后在调用 https://api.weixin.qq.com/cgi-bin/component/api_authorizer_token?component_access_token=? 获取 assess_token + refresh_token 那视频小店这边是不是也得除了上面的登录验证 这下面这几个步骤也得来一遍? 求解下步骤
2022-10-19