全て、
https://developer.paypal.com/webapps/developer/docs/classic/loginwithpaypal/integration/に基づいて、自分のサイトに PayPal ログイン ボタンを追加しようとしています。現在、PayPal サンドボックスを使用しているため、静的 AppID "APP-80W284485P519543T" を使用しています ( https://www.x.com/developers/paypal/documentation-tools/quick-start-guides/paypal-apis-getting-started -ガイド)。
以下は私のJavaScriptコードです
<script src="https://www.paypalobjects.com/js/external/api.js"></script>
<script>
paypal.use( ["login"], function(login) {
login.render ({
"appid": "APP-80W284485P519543T",
"authend": "https://www.sandbox.paypal.com/",
"scopes": "profile email address phone https://uri.paypal.com/services/paypalattributes",
"containerid": "myContainer",
"locale": "en-us",
"returnurl": "http://localhost:3000/"
});
});
</script>
実行すると、「Relying Party Validation error: client_id provided in the request is not match any of the registered clients.Please check the request.」というエラーが表示されました。
それを修正する理由と方法はありますか?
助けてくれてありがとう!