1

您好,我正在将 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);
}
4

1 回答 1

2

在将数据发布到 PayUMoney 时,您不会发布一个名为 always的强制参数。因此,由于这个原因,您会收到此错误。service_providerpayu_paisa

问候, PayUMoney 集成团队

于 2014-09-30T07:02:59.387 回答