美國支付平臺2checkout支付接口介紹

2015-12-19 15:11:51來源:威易網(wǎng)作者:icech

2checkout是美國的第三方在線支付平臺,與paypal、stripe一樣。之前也用過其他的接口,感覺除了ccnow之外,其他都還比較類似。2checkout也與paypal差不多。

2checkout是美國的第三方在線支付平臺,與paypal、stripe一樣。之前也用過其他的接口,感覺除了ccnow之外,其他都還比較類似。2checkout也與paypal差不多。

首先,到2checkout注冊,并且獲得官方認證。認證通過后,在“Account Status”中的“Sell Status”會顯示“Approved to Sell”,“Payment Status”會顯示“Eligible for Payments”(如圖)。

\

下面就可以開始創(chuàng)建支付接口了,詳細的介紹在:
https://www.2checkout.com/documentation/payment-api/paypal-direct

icech使用的是PayPal Direct方式,Demo代碼如下:

<form action="https://www.2checkout.com/checkout/purchase" method="post">
  <input name="sid" type="hidden" value="1817037">
  <input name="mode" type="hidden" value="2CO">
  <input name="return_url" type="hidden" value="https://www.example.com/cart/">
  <input name="li_0_name" type="hidden" value="invoice123">
  <input name="li_0_price" type="hidden" value="25.99">
  <input name="card_holder_name" type="hidden" value="Checkout Shopper">
  <input name="street_address" type="hidden" value="123 Test Address">
  <input name="street_address2" type="hidden" value="Suite 200">
  <input name="city" type="hidden" value="Columbus">
  <input name="state" type="hidden" value="OH">
  <input name="zip" type="hidden" value="43228">
  <input name="country" type="hidden" value="USA">
  <input name="email" type="hidden" value="example@2co.com">
  <input name="phone" type="hidden" value="614-921-2450">
  <input name="ship_name" type="hidden" value="Gift Receiver">
  <input name="ship_street_address" type="hidden" value="1234 Address Road">
  <input name="ship_street_address2" type="hidden" value="Apartment 123">
  <input name="ship_city" type="hidden" value="Columbus">
  <input name="ship_state" type="hidden" value="OH">
  <input name="ship_zip" type="hidden" value="43235">
  <input name="ship_country" type="hidden" value="USA">
  <input name="paypal_direct" type="hidden" value="Y">
  <input type="submit" value="Submit Payment">
</form>

這里最重要的是sid參數(shù),其實就是“Account Number”信息(如圖),其他有用的信息如li_0_name、li_0_price。所以精簡后的代碼為:

\

<form action="https://www.2checkout.com/checkout/purchase" method="post">
  <input name="sid" type="hidden" value="1817037">
  <input name="mode" type="hidden" value="2CO">
  <input name="return_url" type="hidden" value="https://www.example.com/cart/">
  <input name="li_0_name" type="hidden" value="invoice123">
  <input name="li_0_price" type="hidden" value="25.99">
  <input name="paypal_direct" type="hidden" value="Y">
  <input type="submit" value="Submit Payment">
</form>

了解這些就差不多了,2checkout的其他接口也不復(fù)雜,這里就不多做介紹了。

關(guān)鍵詞:2checkout在線支付