- 企业微信侧边栏应用调用wx.config在安桌手机下正常,苹果手机下异常
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script> <script src="https://open.work.weixin.qq.com/wwopen/js/jwxwork-1.0.0.js"></script> <script> wx.config({:$config}); wx.agentConfig({:$agentConfig});alert(111); setTimeout(function() { wx.ready(function () { $('#config').html('config配置成功'); // let userId = 'no-no'; wx.invoke('getContext', {}, function (res) { $('#getContext').html('<pre>' + JSON.stringify(res) + '</pre>') if (res.err_msg === "getContext:ok") { entry = res.entry; //返回进入H5页面的入口类型,目前有normal、contact_profile、single_chat_tools、group_chat_tools、chat_attachment shareTicket = res.shareTicket; //可用于调用getShareInfo接口 } else { //错误处理 } }); wx.invoke('getCurExternalContact', {}, function (res) { $('#userId').html('<pre>' + JSON.stringify(res) + '</pre>'); alert(JSON.stringify(res)); if (res.err_msg === "getCurExternalContact:ok") { alert("以获取useriD:"+ res.userId) let userId = res.userId; //返回当前外部联系人userId } else { //错误处理 } }); }); wx.error(function(res){ console.log('失败'); }); }, 5000) </script> 安卓手机和pc端企业微信都可以正常运行,ios 返回错误 {“err_info":"success","checkResult":{"getContext":false,"getCurExternalContact":false},"errMsg":"confg":ok"}
2021-07-15 - 微信开放平台,第三方平台上传临时素材然后再获取,不知道是不是获取流程错误,求指点
这是发起上传临时素材请求的代码 [图片] 这是获取临时素材的代码 [图片] 接下来是请求结果 [图片] 有大佬能帮我看看我是哪里错了吗,要哭了TVT
2019-05-25 - 微信开放平台,第三方平台代小程序实现业务,修改小程序头像的接口,根据接口要求上传
使用永久素材和临时素材都报错 invalid media_id hint $postUrl = "http://file.api.weixin.qq.com/cgi-bin/media/upload?access_token=$token&type=$type"; $ch = curl_init(); $url = str_replace(env('CDN_URL'), public_path(), $url); $file = new \CURLFile($url); // \Log::info($file); $data = array('name' => 'media', 'file' => $file);临时素材接口返回 [图片] 在微信接口调试工具验证这个mediaid是正确的 [图片] 接下来提交到头像修改接口直接报错 $setNicknameUrl = 'https://api.weixin.qq.com/cgi-bin/account/modifyheadimage?access_token='.$auth_info['authorizer_access_token']; $postData['head_img_media_id'] = $res['media_id']; $postData['x1'] = (float)0; $postData['y1'] = (float)0; $postData['x2'] = (float)1; $postData['y2'] = (float)1; $res = $this->curl_post($setNicknameUrl, $postData, 'json'); [图片] 请问这种情况是怎么回事呢
2019-05-21 - 微信开放平台,第三方平台代小程序实现业务,修改小程序头像的接口,根据接口要求上传
使用永久素材和临时素材都报错 invalid media_id hint $postUrl = "http://file.api.weixin.qq.com/cgi-bin/media/upload?access_token=$token&type=$type"; $ch = curl_init(); $url = str_replace(env('CDN_URL'), public_path(), $url); $file = new \CURLFile($url); // \Log::info($file); $data = array('name' => 'media', 'file' => $file);临时素材接口返回 [图片] 在微信接口调试工具验证这个mediaid是正确的 [图片] 接下来提交到头像修改接口直接报错 $setNicknameUrl = 'https://api.weixin.qq.com/cgi-bin/account/modifyheadimage?access_token='.$auth_info['authorizer_access_token']; $postData['head_img_media_id'] = $res['media_id']; $postData['x1'] = (float)0; $postData['y1'] = (float)0; $postData['x2'] = (float)1; $postData['y2'] = (float)1; $res = $this->curl_post($setNicknameUrl, $postData, 'json'); [图片] 请问这种情况是怎么回事呢
2019-05-21 - 第三方修改小程序头像上传素材报错
使用永久素材和临时素材都报错 invalid media_id hint
2019-04-04 - 小程序在安卓上获取不到对象属性
[图片] [图片]phoneNumber在模拟器和ios都能获取到,但是在安卓获取不到
2018-07-17