0

我有网站内置codeigniter框架。

我想用google checkout. 我已使用此代码转移资金,但我需要返回一些东西,以便我可以知道转移成功,然后将值输入我的数据库。

我不知道该怎么做。

谁能逐步告诉我如何做到这一点?

我的表格:

<form action="https://sandbox.google.com/checkout/api/checkout/v2/checkoutForm/Merchant/xxxxxxx" id="BB_BuyButtonForm" method="post" name="BB_BuyButtonForm" target="_top"> 
    <input name="item_name_1" type="hidden" value="Deposite"/> 
    <input name="item_description_1" type="hidden" value="Money Deposite"/>
    <input name="item_quantity_1" type="hidden" value="1"/>
    <input name="item_price_1" type="text" value="30.0"/>
    <input name="item_currency_1" type="hidden" value="USD"/>
    <input name="_charset_" type="hidden" value="utf-8"/><br />
    <input alt="" src="https://sandbox.google.com/checkout/buttons/buy.gif?merchant_id=xxxxxxxx&amp;w=117&amp;h=48&amp;style=white&amp;variant=text&amp;loc=en_US" type="image"/>
</form>
4

1 回答 1

0

...但是我需要返回一些东西,以便我可以知道传输成功,然后将值输入到我的数据库中...

Google Checkout API调用“第 2 部分”或“处理结帐订单” 。

这是使用他们的 Java lib 的教程。请注意,这并不意味着您“必须” 使用这个(或任何)特定的库,它只是向您展示流程。

其他库在这里

于 2013-01-15T22:22:18.237 回答