2016-11-25 9 views
2

EasyPaisa Payment Gatewayインテグレーションでエラーが発生しました。Easy paisa Payment Gatewayの統合エラー

私たちはEasyPaisaに店舗を持ち、支払い方法の統合ガイドラインを受け取りました。

彼らは私がeasypaisaウェブサイト

Easy Paisa Description about error

に次のエラーを取得する私たちのstoreIdでこのフォームを送信すると、次のフォーム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> 

を掲載することにより任意のヘルプは、私はあることを言及していますいくつか不足しています

答えて

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

関連する問題