我正在将此Vue.js库用于Paypal:
https://github.com/khoanguyen96/vue-paypal-checkout
当我在沙盒模式下使用它时,一切正常。
当我切换到生产模式并放入生产客户端ID时,出现以下401错误:
{"error":"invalid_client","error_description":"Client Authentication failed"}
我知道它将投入生产,因为正在对此端点发出请求: https://www.paypal.com/v1/oauth2/token
我正在使用这样的小部件:
<PayPal
amount="6.00"
currency="USD"
:client="paypal"
>
</PayPal>
“ paypal”变量具有我的密钥,例如:
{
'sandbox': 'sandbox_key',
'production': 'production_key'
}