我想在我的钛应用程序中使用Paypal REST API,我写这样的代码:
function paypal(){
var data = {grant_type: 'client_credentials'};
var xhr = Titanium.Network.createHTTPClient({
onload: function() {
alert(this.responseText);
},
onerror: function(e) {
alert(e.error);
},
timeout : 5000
});
xhr.open('POST', 'https://clientID:secret@api.sandbox.paypal.com/v1/oauth2/token');
xhr.setRequestHeader('Accept','application/json');
xhr.setRequestHeader('Accept-Language','en_us');
xhr.send(data);
}
但它仍然将响应视为错误并说:需要身份验证 有人能给我一个帮助吗?非常感谢!