Redirect Paypal URL中的多个项目

Redirect Paypal URL中的多个项目,redirect,paypal,Redirect,Paypal,我有一个重定向将买家带到Paypal购物车。它将它们转发到的URL是(为可读性而格式化): 出于设计原因,我无法使用Post数据 如果我通过传递&amount=1&item\u name=5 Store Items将其作为单个项目,它可以正常工作,但如果可能,我需要将其分解为单个项目 这可以吗?我看到这个问题: 但是它是用来发布的,而不是url。你可能想试试购物车上传的方法。有关更多信息,请参阅 结果基本上是这样的: https://www.paypal.com/cgi-bin/webscr?

我有一个
重定向
将买家带到Paypal购物车。它将它们转发到的URL是(为可读性而格式化):

出于设计原因,我无法使用Post数据

如果我通过传递
&amount=1&item\u name=5 Store Items
将其作为单个项目,它可以正常工作,但如果可能,我需要将其分解为单个项目

这可以吗?我看到这个问题:


但是它是用来发布的,而不是url。你可能想试试购物车上传的方法。有关更多信息,请参阅

结果基本上是这样的:

https://www.paypal.com/cgi-bin/webscr?cmd=_cart
&business=email@domain.com
&pal=BGUR9WCWZAL7G
&button_subtype=services
&upload=1
&no_note=1
&rm=1
&return=http://127.0.0.1/store/thank-you
&cancel_return=http://127.0.0.1/store/payment-cancelled
&currency_code=EUR
&item_name_1=Store 9 Item
&amount_1=12.00
&quantity_1=1
&shipping_1=0.00
&item_name_2=Something else
&amount_2=24.00
&quantity_2=1
&shipping_2=0.00

你说这是重定向是什么意思?像“立即购买”按钮吗?@David,是的,这是一个重定向到的URL,要求用户购买东西,很像“立即购买”按钮。我真的不认为这是可能的,它看起来根本不是一个文档化的方法。它采用
item\u name
而不是
item\u name\u 1
这一事实似乎表明它不接受多个项目。为什么不能使用POST数据?
https://www.paypal.com/cgi-bin/webscr?cmd=_cart
&business=email@domain.com
&pal=BGUR9WCWZAL7G
&button_subtype=services
&upload=1
&no_note=1
&rm=1
&return=http://127.0.0.1/store/thank-you
&cancel_return=http://127.0.0.1/store/payment-cancelled
&currency_code=EUR
&item_name_1=Store 9 Item
&amount_1=12.00
&quantity_1=1
&shipping_1=0.00
&item_name_2=Something else
&amount_2=24.00
&quantity_2=1
&shipping_2=0.00