2012-09-29 4 views
2

Googlecheckout을 사용하면 고객 주문을 유도하고 URL을 반환 한 다음 사용자를 URL로 전송하여 전송 한 데이터를 볼 수 없으므로 수정하지 마라.Google Checkout 서버 대 서버 통신에 해당하는 Amazon Checkout

CURL을 사용하는 Amazon Checkout에 대한 폴링 요청이 있지만 Amazon Checkout 또는 Amazon FPS (유연한 결제 시스템)에 동일한 기능이 있습니까?

구글 코드 : https://developers.google.com/checkout/developer/Google_Checkout_HTML_API#api_details https://developers.google.com/checkout/developer/Google_Checkout_HTML_API#integration_overview // CURL 예, 여기에서 아래로 조금 스크롤합니다.

_type=checkout-shopping-cart 
&shopping-cart.items.item-1.item-name=Peanut%20Butter 
&shopping-cart.items.item-2.item-name=Strawberry%20Jelly 
&shopping-cart.items.item-1.item-description=Made%20from%20peanuts 
&shopping-cart.items.item-2.item-description=Made%20from%20strawberries 

따라서 요청은 다음과 같습니다.

curl -d '_type=checkout-shopping-cart&shopping-cart.items.item-1.item-name=Peanut%20Butter&shopping-cart.items.item-2.item-name=Strawberry%20Jelly&shopping-cart.items.item-1.item-description=Made%20from%20peanuts&shopping-cart.items.item-2.item-description=Made%20from%20strawberries' 
https://P_MERCHANT_ID:[email protected]/api/checkout/v2/requestForm/Merchant/P_MERCHANT_ID 

답변