gpt4 book ai didi

php - Paypal 请求不断收到 MALFORMED_REQUEST

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

我尝试向 PayPal 付款。但出于某种原因,我只收到 MALFORMED_REQUEST 错误。没有更多信息。甚至没有异常的 getData() 函数。

这是编译后的 JSON:

{
"intent": "sale",
"payer": {
"payment_method": "paypal",
"payer_info": {
"first_name": "Testvorname",
"last_name": "Testnachname",
"email": "test@example.com",
"suffix": "Herr"
}
},
"transactions": [
{
"amount": {
"currency": "EUR",
"total": "72.00"
},
"item_list": {
"items": [
{
"quantity": "4",
"name": "test1",
"price": "8",
"currency": "EUR"
},
{
"quantity": "2",
"name": "test2",
"price": "20",
"currency": "EUR"
}
]
}
}
],
"redirect_urls": {
"return_url": "https://www.google.de",
"cancel_url": "https://www.google.de"
} }

我不知道这个 JSON 有什么问题。我正在使用 PHP SDK。

最佳答案

问题不在 SDK 中。您传递给 Paypal 服务器的数据导致了这个问题。不过这里的错误信息并不明显。

您不需要在“payer”对象中传递“payer_info”。删除它可以解决问题。这是 JSON 的样子:

{
"intent": "sale",
"payer": {
"payment_method": "paypal"
},
"transactions": [
{
"amount": {
"currency": "EUR",
"total": "72.00"
},
"item_list": {
"items": [
{
"quantity": "4",
"name": "test1",
"price": "8",
"currency": "EUR"
},
{
"quantity": "2",
"name": "test2",
"price": "20",
"currency": "EUR"
}
]
}
}
],
"redirect_urls": {
"return_url": "https://www.google.de",
"cancel_url": "https://www.google.de"
}
}

有关更多信息,您始终可以使用 SDK 中提供的示例,以及帮助您快速帮助您调试问题的文档等。

以下是一些有用的链接:

关于php - Paypal 请求不断收到 MALFORMED_REQUEST,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32099506/

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