1
貝寶Rest Api不工作Tizen電視,而其工作正常休息客戶端。在Tizen電視中既沒有成功也沒有失敗的功能。貝寶Api不工作Tizen電視
更改了貝寶以外的網址,它的工作正常。還嘗試與Ajax沒有發現變化。
這裏是它的示例代碼。
得到:
var request = $http({
method : "get",
url : "https://api.sandbox.paypal.com/v1/payments/payment",
headers : {
"Content-Type" : "application/json",
"Authorization": "Bearer A101.FfLKjOmGx-80JU9h9ACDqrm0-dSg5pvlUsMnz2Slsb9hbSZSNQXQ7c653uc0XEYS.dd1D0romSBOfYq_Q7dIh6KEQg0O"
}
});
request.then(function(response){
console.log(response);
},function(error){
console.log(error);
});
帖子:
var request = $http({
method : "POST",
url : 'http://api.sandbox.paypal.com/v1/oauth2/token',
data : 'grant_type=client_credentials',
headers : {
'Content-Type': 'application/x-www-form-urlencoded',
'Accept': 'application/x-www-form-urlencoded',
'Accept-Language': 'en_US',
"Authorization": "Basic QWVRWnpOanM5UGdrQVdyb1VkbjktZ1lhcmNzNUxST2hSN2QyN1VTLTAyb0lXNy1pcmhyMUFkWXhLdkpoY1Q5Y0JoUXlxeHJDZW5MV2JXQjI6RUR4Q3pwbmRkRHBHSVI4SFo2TUR6dzkxYjR6enZndXgwc1hDSFhfU0c5c0pmOHFDNmg4NWd3S3ctTktIbW1ObXNtMFZpT0FQOU84WHREZFc="
}
});
request.then(function(response){
console.log(response);
},function(error){
console.log(error);
});