$.ajax({
url : '/dingdingConsumer/dingTalkCommon/getUserInfo',
type : 'GET',
success : function(data, status, xhr) {
var info = JSON.parse(data);
},
error : function(xhr, errorType, error) {
logger.e("yinyien:" + _config.corpId);
alert(errorType + ', ' + error);
}
});
dd.config({
agentId : _config.agentid,
corpId : _config.corpId,
timeStamp : _config.timeStamp,
nonceStr : _config.nonceStr,
signature : _config.signature,
jsApiList : [ 'runtime.info', 'biz.contact.choose',
'device.notification.confirm', 'device.notification.alert',
'device.notification.prompt', 'biz.ding.post',
'biz.util.openLink' ]
});
dd.ready(function() {
dd.biz.navigation.setTitle({
title: '钉钉demo',
onSuccess: function(data) {
alert('dd.ready rocks!');
},
onFail: function(err) {
log.e(JSON.stringify(err));
}
});
alert('dd.ready rocks!');
dd.runtime.info({
onSuccess : function(info) {
logger.e('runtime info: ' + JSON.stringify(info));
},
onFail : function(err) {
logger.e('fail: ' + JSON.stringify(err));
}
});
dd.runtime.permission.requestAuthCode({
corpId : _config.corpId,
onSuccess : function(info) {
alert('authcode: ' + info.code);
$.ajax({
url : '/dingdingConsumer/dingTalkCommon/getAccessToken',
type : 'GET',
success : function(data, status, xhr) {
alert("accessToken"+data);
$.ajax({
url : 'https://oapi.dingtalk.com/user/getuserinfo?access_token='+data+'&code=' + info.code,
type : 'GET',
success : function(data, status, xhr) {
var info = JSON.parse(data);
document.getElementById("userInfo").innerHTML = info;
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);
}
});
}
,
error : function(xhr, errorType, error) {
logger.e("yinyien:" + _config.corpId);
alert(errorType + ', ' + error);
}
});
},
onFail : function(err) {
alert('fail: ' + JSON.stringify(err));
}
});
dd.ui.pullToRefresh.enable({
onSuccess: function() {
},
onFail: function() {
}
})
dd.biz.navigation.setMenu({
backgroundColor : "#ADD8E6",
items : [
{
id:"此处可以设置帮助",//字符串
// "iconId":"file",//字符串,图标命名
text:"帮助"
}
,
{
"id":"2",
"iconId":"photo",
"text":"我们"
}
,
{
"id":"3",
"iconId":"file",
"text":"你们"
}
,
{
"id":"4",
"iconId":"time",
"text":"他们"
}
],
onSuccess: function(data) {
alert(JSON.stringify(data));
},
onFail: function(err) {
alert(JSON.stringify(err));
}
});
});
dd.error(function(err) {
alert('dd error: ' + JSON.stringify(err));
});
-------------------------
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。