按照demo修改的,但报错。
代码如下:
DingTalkPC.config({
但在mac钉钉rc版测试:
agentId:_config.agentId,
corpId:_config.corpId,
timeStamp:_config.timeStamp,
nonceStr:_config.nonceStr,
signature:_config.signature,
jsApiList:['device.notification.alert', 'device.notification.confirm']
});
DingTalkPC.ready(function(res){
DingTalkPC.runtime.permission.requestAuthCode({
corpId: _config.agentId, //企业ID
onSuccess: function(result) {
console.log(result);
$.ajax({
url: ctxPath+'userinfo?code=' + info.code + '&corpid='
+ _config.corpId,
type: 'GET',
success: function (data, status, xhr) {
var info = JSON.parse(data);
document.getElementById("userName").innerHTML = info.name;
document.getElementById("userId").innerHTML = info.userid;
// 图片
if (info.avatar.length != 0) {
var img = document.getElementById("userImg");
img.src = info.avatar;
img.height = '100';
img.width = '100';
}
},
error: function (xhr, errorType, error) {
logger.e("yinyien:" + _config.corpId);
alert(errorType + ', ' + error);
}
});
},
onFail : function(err) {
console.log(JSON.stringify(err));
}
})
});
调用 config 时发生了错误
VM2072 index.js:180 返回错误对象如下:
VM2072 index.js:180 Object
VM2072 index.js:180 如果以上信息还未能解决你的问题,请访问 bbs.aliyun.com/thread/276.html 发帖咨询
VM2155 index.js:61 {"body":{"errorCode":"PC_1003","errorMessage":"服务端错误码:52013"},"code":500}
求教各位大神指点迷津!
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。