1

Paypal Rest Api 不适用于 Tizen tv,而它在休息客户端上工作正常。Tizen tv 中既不调用成功函数也不调用失败函数。

更改了贝宝以外的网址,使其正常工作。还尝试使用 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);
 });
4

1 回答 1

0

Samsung D 论坛中的此 API 指南包含一些示例,可以帮助您查询有关 Paypal 的信息。

三星 D 论坛 API 指南:https://www.samsungdforum.com/TizenGuide/tizen4791/index.html

如果您仍然遇到问题,您可以尝试在 SamsungDForum 中发帖

SamsungDForum Tizen 电视:https://www.samsungdforum.com/SamsungDForum/ForumDashBoard

谢谢你。

于 2016-08-12T06:01:48.533 回答