2013-01-15 120 views
0

我有網站建在codeigniter框架。我想使用google checkout。 我已經使用此代碼來轉移資金,但我需要返回的東西,以便我可以知道轉移成功,然後將值輸入到我的數據庫。谷歌結帳集成 - codeigniter

我不知道該怎麼做。

任何人都可以告訴我一步一步如何做到這一點?

我的形式:

<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> 

回答

0

...但我需要的東西回來,這樣我可以知道,轉讓成功,然後輸入值到我的數據庫......

Google Checkout API稱之爲「第2部分」或「過程結算訂單」。

這是tutorial using their Java lib。請注意,這並不意味着你使用這個(或任何)特定的lib,它只是向你顯示流程。其他庫爲here