gpt4 book ai didi

ruby-on-rails - 此处使用何种协议(protocol)与 PayPal 通信?

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

我知道有多种方法可以使用 PayPal 的 API(SOAP 等),但我对它们一无所知,所以为了扩大我对这个主题的了解,请你告诉我什么是在这个例子中使用了 railscasts:

   1. def paypal_url(return_url)  
2. values = {
3. :business => ’seller_1234111143_biz@asciicasts.com’,
4. :cmd => ’_cart’,
5. :upload => 1,
6. :return => return_url,
7. :invoice => id
8. }
9.
10. line_items.each_with_index do |item, index|
11. values.merge!({
12. "amount_#{index + 1}" => item.unit_price,
13. "item_name_#{index + 1}" => item.product.name,
14. "item_number_#{index + 1}" => item.product.identifier,
15. "quantity_#{index + 1}" => item.quantity
16. })
17. end
18. "https://www.sandbox.paypal.com/cgi-bin/webscr?" + values.map { |k,v| "#{k}=#{v}" }.join("&")
19. end

谢谢!

最佳答案

如前所述,这是对 PayPal 服务器的获取请求。

具体来说,它是一个购物车上传命令 - 您可以在这里阅读:https://www.x.com/community/ppx/wps .如果有兴趣,请查看该页面右侧的 html 变量引用。正是这些变量随所提供的代码一起发送到 PayPal。

关于ruby-on-rails - 此处使用何种协议(protocol)与 PayPal 通信?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1885215/

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