$.ajax({
url: 'https://api-ssl.bitly.com/oauth/access_token',
type: 'POST',
contentType: 'application/x-www-form-urlencoded',
dataType: 'json',
data: { Authorization: "Basic " + btoa('myusername' + ":" + '[email protected]') },
success: function (result) {
console.log(result);
},
error: function() {
alert("Cannot get data");
}
});
我想通過提供用戶名和密碼從bitly api獲取訪問令牌,但它顯示invalid_client_authorization錯誤。有沒有人有同樣的想法?如何使用密碼和用戶名來獲得訪問令牌?
Bitly文檔:http://dev.bitly.com/authentication.html#resource_owner_credentials
嗨,它不符合您提供的代碼。此外,它在$ .serialize – 2015-03-26 05:46:02
上給出錯誤此代碼示例不起作用,但它確實包含一些關鍵點。請參閱我的答案,以獲得簡明而有效的示例。 – 2016-05-13 15:34:58