gpt4 book ai didi

php - Paypal REST api - 如何控制显示语言?

转载 作者:太空宇宙 更新时间:2023-11-03 15:46:28 26 4
gpt4 key购买 nike

我正在使用官方 PHP SDK 开发 PayPal REST API:https://github.com/paypal/rest-api-sdk-php

但是我注意到 REST 调用将我指向中文语言环境的结帐页面(沙盒模式),知道如何将显示语言控制为英语吗?

我发现一年前有人问过同样的问题但没有答案:REST Api integration - how to force payment page's language?

或者任何一种解决方案都是基于经典 API 提供的,看起来不适用于 REST API: How can I control the language displayed in the Paypal Sandbox?

最佳答案

没有可以传递给 REST API 的 LOCALE 选项,但是,如果您为交易设置送货地址,它应该会自动更新。您可以使用下面的调用进行测试。

curl -v https://api.sandbox.paypal.com/v1/payments/payment -H 'Content-Type: application/json' -H 'Authorization: Bearer {ACCESS_TOKEN}' \
-d '{
"intent":"sale",
"redirect_urls":{
"return_url":"http://localhost",
"cancel_url":"http://localhost"
},
"payer":{
"payment_method":"paypal"
},
"transactions":[
{
"amount":{
"total":"7.47",
"currency":"USD"
},
"item_list":{
"shipping_address":{
"recipient_name":"Test Test",
"type":"business",
"line1":"187 Alameda Santos",
"city":"Sao Paulo",
"country_code":"BR",
"postal_code":"01119",
"state":"Condominio Edificio Platinum"
}
},
"description":"This is the payment transaction description."
}
]
}'

关于php - Paypal REST api - 如何控制显示语言?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23524011/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com