我正在尝试使用以下代码调用 Yammer REST API 以获取经过身份验证的用户信息:
$(document).ready(function() {
$.ajax({
method: "GET",
url: "https://www.yammer.com/api/v1/users/current.json",
contentType: "application/json; charset=utf-8",
dataType: 'json',
success: function(data) {
if (data.Success) {
alert(data);
}
},
error: function(xhr2, status2) {
alert(xhr2.status);
}
});
});
但是,它总是会出错。谁能指导我继续这件作品?