PayPal使用GET购买或捐赠表单url

PayPal使用GET购买或捐赠表单url,url,paypal,get,Url,Paypal,Get,有没有办法通过使用GET请求填写参数来打开PayPal的点击购买/捐赠url?原因是我试图在PhoneGap应用程序的iframe中打开PayPal页面 通常我会使用下面的表格 我在网上搜索过,但找不到任何让我认为它不存在的东西,但我想和这里的每个人一起看看 大概是这样的: https:www.paypal.com/cgi-bin/webscr?cmd=\u xclick&business=info@example.org&税=0。。。等等等等 有什么想法吗?谢谢 <form id

有没有办法通过使用GET请求填写参数来打开PayPal的点击购买/捐赠url?原因是我试图在PhoneGap应用程序的iframe中打开PayPal页面

通常我会使用下面的表格

我在网上搜索过,但找不到任何让我认为它不存在的东西,但我想和这里的每个人一起看看

大概是这样的:

https:www.paypal.com/cgi-bin/webscr?cmd=\u xclick&business=info@example.org&税=0。。。等等等等

有什么想法吗?谢谢

    <form id="paypal" name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
        <input type="hidden" name="cmd" value="_xclick">
        <input type="hidden" name="business" value="info@example.org">
        <input type="hidden" name="tax" value="0">
        <input type="hidden" name="item_name" value="Donation">
        <input type="hidden" name="currency_code" value="USD">
        <input type="hidden" name="amount" value="5.00">
        <input type="submit" value="$5" />
    </form> 

嗯。嗯。只要把它当作一根绳子就行了

https: www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=info@example.org&tax=0&item_name=donation&currency_code=USD&amount=5.00
没有。它崩溃时出现-999错误。显然,将PayPal加载到uiwebview是一个常见的问题