我想打電話給Yammer的REST API使用下面的代碼獲得認證的用戶的信息:如何使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);
}
});
});
但是,它總是要錯法。任何人都可以指導我繼續這個作品嗎?