0
私は正常に使い捨てのクレジットカードトークンを取得しました。私はこのトークンを私のサーバーに送って請求プロセスを完了する必要があります。おそらくAngularの組み込み$ httpモジュールやサードパーティのREST APIライブラリ(RestAngularなど)を使用して、クレジットカードトークンを自分のサーバーに送信したいと思うでしょう。angularjsを使用してサーバーpaypalにトークンを送信
私はこのような$ HTTPモジュールを使用します。
$http({
url: 'https://api.sandbox.paypal.com/v1/payments/payment',
method: 'GET',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + $localStorage.accessTokenPayPal,
},
}).success(function (data, status, headers, config) {
//console.log(data);
alert("valide: "+ JSON.stringify(data));
}).error(function (error) {
//console.log(data);
alert("error:"+JSON.stringify(error));
});
をしかし、私は常にこのメッセージが見つかりました:
{"count":0}
paroblemは何してくださいだと?