我想從PayPal付款使用付款庫。 我下面這個https://developer.paypal.com/docs/integration/direct/vault/#store-credit-card使用信用卡令牌休息api貝寶
我打電話: https://api.sandbox.paypal.com/v1/payments/payment
{
"id":"CPPAY-13U4fds67758H032001PKPIFQZI",
"intent":"sale",
"payer":{
"payment_method": "credit_card",
"funding_instruments":[
{
"credit_card_token":{
"credit_card_id":"CARD-3S3021595U985430TLCM4HLA"
}
}
]
},
"transactions": [
{
"amount":
{
"total": "1.00",
"currency": "USD"
},
"description": "Testando pagamento cartao Vault."
}]
}
但我得到這個消息:
{
"name": "UNKNOWN_ERROR",
"message": "An unknown error occurred.",
"information_link": "https://developer.paypal.com/webapps/developer/docs/api/#UNKNOWN_ERROR",
"debug_id": "64f99d6ec2b1f"
}
你能告訴我你的代碼嗎? –
http://paypal.github.io/PayPal-PHP-SDK/sample/doc/payments/CreatePaymentUsingSavedCard.html –
我使用郵遞員從鉻,只是一個POST那裏 –