我可以在Titanium中使用Paypal REST API吗?

时间:2014-06-10 10:42:08

标签: titanium titanium-mobile titanium-modules

我想在我的钛应用程序中使用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);
}

但它仍然将响应视为错误并说:需要身份验证 有人能给我一个帮助吗?非常感谢!

1 个答案:

答案 0 :(得分:1)

Paypal已有钛模块,因此您可以轻松使用它。