2010-07-24 40 views
0

是否可以在不使用服務器 - 服務器提交選項的情況下在Google Checkout中設置送貨選項?使用Google Checkout直接提交提交商家定義的送貨選項

我試圖保持結帳過程儘可能簡單(主要是因爲我沒有完全理解服務器 - 服務器API部分),因此我使用Google Checkout中的直接提交選項(詳細信息here。向下滾動代碼塊)。所以,我想添加隱藏的輸入字段來指定多少運輸費用,併發送。

這可能嗎?

回答

0

它,其實可能。下面是我做到這一點:

<input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.shipping-methods.flat-rate-shipping-1.name" value="Delivery"/> 
<input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.shipping-methods.flat-rate-shipping-1.price" value="123.45"/> 
<input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.shipping-methods.flat-rate-shipping-1.price.currency" value="USD"/> 
<input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.shipping-methods.flat-rate-shipping-1.shipping-restrictions.allow-us-po-box" value="false"/> 
<input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.shipping-methods.flat-rate-shipping-1.shipping-restrictions.allowed-areas.us-country-area-1.country-area" value="CONTINENTAL_48"/> 

整蠱肯定,但它的作品。