payumoney后的整合在android.error(payumoney post integra

2019-10-20 17:27发布

你好,我在应用集成payumoney,当我尝试后各个领域的URL它说, Sorry, some problem occurred

下面我正在粘贴我的代码。

gen Hash();
String post Data = "hash=hash&key=key&txnid=txnid&amount=amount&product info=product info&first name=first name&email=email&contact=contact&SALT=SALT&SURL=SURL&FURL= FURL";
web View = (Web View) findViewById(R.id.webView1);
webView.getSettings().setJavaScriptEnabled(true);
webView.postUrl(url, EncodingUtils.getBytes(postData, "base64"));

public void genHash() {
    try {   
        hash = sha512.sha512(key + "|" + txnid + "|" + amount + "|"
                    + productinfo + "|" + firstname + "|" + email
                    + "|||||||||||" + SALT);

    } 
    catch (NoSuchAlgorithmException e) {
        e.printStackTrace();
    } 
    catch (UnsupportedEncodingException e) {        
        e.printStackTrace();    
    }

    System.out.println(hash);
}

Answer 1:

同时发布的数据PayUMoney你不发布名为必选参数service_provider其值始终payu_paisa 。 因此,对于这个原因,你收到此错误。

问候,PayUMoney整合团队



文章来源: payumoney post integration in android.error