Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/178.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 我在支付网关上遇到了问题_Android_Paypal_Payment Gateway - Fatal编程技术网

Android 我在支付网关上遇到了问题

Android 我在支付网关上遇到了问题,android,paypal,payment-gateway,Android,Paypal,Payment Gateway,我在做Android应用程序在线购买和支付网关也使用。根据EBS指南,我执行所有程序。但是我不能成功付款 AndroidMainfest.xml 在PaymentActivity.java中 错误消息的屏幕截图。有时,invalidsecurehash消息也会显示您是否在ebs帐户中创建了应用程序?? <activity android:name=".PaymentSuccessActivity" android:screenOrientation="

我在做Android应用程序在线购买和支付网关也使用。根据EBS指南,我执行所有程序。但是我不能成功付款

AndroidMainfest.xml

在PaymentActivity.java中


错误消息的屏幕截图。有时,invalidsecurehash消息也会显示

您是否在ebs帐户中创建了应用程序??
   <activity
        android:name=".PaymentSuccessActivity"
        android:screenOrientation="portrait"
        android:label="@string/title_activity_payment_success" >
         <intent-filter>
            <data
                android:host="@string/hostname"//hostname=EBS
                android:scheme="com.example.bazar" 
                />
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
        </intent-filter>
    </activity>
    dependencies {
    compile files('libs/volley.jar')
compile project(':EBS')
}
double totalamount=12.34;
HOST_NAME = getResources().getString(R.string.hostname); //HOST_NAME=EBS;
*
*
*
*
  custom_post_parameters = new ArrayList<HashMap<String, String>>();
    HashMap<String, String> hashpostvalues = new HashMap<String, String>();
    hashpostvalues.put("account_details", "saving");
    hashpostvalues.put("merchant_type", "gold");
    custom_post_parameters.add(hashpostvalues);

    PaymentRequest.getInstance()
            .setCustomPostValues(custom_post_parameters);
EBSPayment.getInstance().init(buyProduct, ACC_ID, SECRET_KEY,
          Config.Mode.ENV_LIVE, Config.Encryption.ALGORITHM_MD5, HOST_NAME);
POST DATA{ship_postal_code=678702, session_id=f49017766ab63ef612a4bd1b9d6e224e,
 mobile_type=android,
 card_expiry=1216,
 phone=9495638104, 
 merchant_type=gold,
 emi=, card_number=4*************12,
 ship_country=IND,
 ship_name=c,
 package=com.example.bazar://EBS?, 
 state=Kerala, account_details=saving, display_currency=, 
 city=palakkad, currency=INR, mode=LIVE, amount=12.34,
 description=Test Transaction,
 name=c, 
 page_id=, 
 ship_city=palakkad,
 ship_address=palakkad,palakkad, 
 account_id=1****8,
 card_cvv=123, 
 bank_code=,
 name_on_card=Test Transaction, 
 country=IND, 
 return_url=https://qa.secure.ebs.in/v3/response.php, 
 ship_phone=9495638104, card_expiry_cvv=0,
 email=sunjithc@gmail.com, address=palakkad,palakkad, postal_code=678702, payment_mode=1, store_card=1, reference_no=346, channel=2, ship_state=Kerala}