2016-11-25 37 views
2

我需要幫助,因爲在EasyPaisa支付網關集成中獲取錯誤。簡易派薩支付網關集成錯誤

我們在EasyPaisa上有商店,並收到了付款集成指南如何整合。

他們已經提到,通過發佈以下形式https://easypay.easypaisa.com.pk/easypay/Index.jsf

<form action="https://easypay.easypaisa.com.pk/easypay/Index.jsf" method="POST" target="_blank"> 
<! -- Store Id Provided by Easypay--> 
<input name="storeId" value="43" hidden = "true"/> 
<! -- Amount of Transaction from merchant’s website --> 
<input name="amount" value="10" hidden = "true"/> 
<! – Post back URL from merchant’s website -- > 
<input name="postBackURL" value=" http://www.my.online-store.com/transaction/MessageHandler" hidden = "true"/> 
<! – Order Reference Number from merchant’s website -- > 
<input name="orderRefNum" value="1101" hidden = "true"/> 
<! – Expiry Date from merchant’s website (Optional) -- > 
<input type =」hidden」 name=」expiryDate」 value=」20140606 201521」> 
<! – Merchant Hash Value (Optional) -- > 
<input type =」hidden」 name=」merchantHashedReq」 value=」askldjflaksdjflkasdf======asdfas dfkjaskdf」> 
<! – If Merchant wants to redirect to Merchant website after payment completion (Optional) -- > 
<input type =」hidden」 name=」autoRedirect」 value=」0」> 
<! – If merchant wants to post specific Payment Method (Optional) -- > 
<input type =」hidden」 name=」paymentMethod」 value=」0」> 
<! – If merchant wants to post specific Payment Method (Optional) -- > 
<input type =」hidden」 name=」emailAddr」 value=」[email protected]」> 
<! – If merchant wants to post specific Payment Method (Optional) -- > 
<input type =」hidden」 name=」mobileNum」 value=」03325241789」> 
<! – This is the button of the form which submits the form -- > 
<input type = 「image」 src=」checkout-button-with-logo.png border=」0」 name= 「pay」> 
</form> 

當我提交此表與我們STOREID得到easypaisa網站

Easy Paisa Description about error

以下錯誤的任何幫助我缺少一些東西

回答

1

您的表單輸入錯誤,這就是爲什麼它不工作。

你只是改變這一點,並檢查它會工作。

<! – If merchant wants to post specific Payment Method (Optional) -- > 
 

 
Replace this: 
 

 
<input type =」hidden」 name=」paymentMethod」 value=」0」> 
 

 
<! – If merchant wants to post specific Payment Method (Optional) -- > 
 

 
By one of the following. 
 

 
1. For Mobile Account: 
 

 
<input type ="hidden" name="paymentMethod" value="MA_PAYMENT_METHOD"> 
 

 

 
2. For Retailer/Shop Account: 
 

 
<input type ="hidden" name="paymentMethod" value="OTC_PAYMENT_METHOD/"> 
 

 

 
3. For Credit/Debit Card: 
 

 
<input type ="hidden" name="paymentMethod" value="CC_PAYMENT_METHOD">

我有同樣的問題,但是當我嘗試這樣做它爲我工作。

+1

可以請您分享完整的集成方法。 – Nomi

+0

請分享您的問題,然後我會糾正您的問題,並以電子郵件的形式發回給您。 –

+0

請通過此電子郵件與我聯繫,[email protected] –