为什么我在使用c#的asp.net中从Paypal获得INVALID响应?

时间:2012-09-08 10:22:24

标签: asp.net paypal paypal-sandbox

我有一个用于试用的paypal沙盒帐户 一个aspx页面:sampleprocess.aspx

在Merchant A / c中,页面被重定向到http://www.Hostsite.com/member/samplepaypal.aspx 付款完成后。

在samplepaypal.aspx.cs页面加载:

protected void Page_Load(object sender, EventArgs e)
    {
        //string tx = Request.QueryString["tx"];
        //Post back to either sandbox or live
        string strSandbox = "https://www.sandbox.paypal.com/cgi-bin/webscr";
        string strLive = "https://www.paypal.com/cgi-bin/webscr";
        HttpWebRequest req = (HttpWebRequest)WebRequest.Create(strSandbox);

        //Set values for the request back
        req.Method = "POST";
        req.ContentType = "application/x-www-form-urlencoded";
        byte[] param = Request.BinaryRead(HttpContext.Current.Request.ContentLength);
        string strRequest = Encoding.ASCII.GetString(param);
        strRequest += "&cmd=_notify-validate";

        req.ContentLength = strRequest.Length;

        //for proxy
        //WebProxy proxy = new WebProxy(new Uri("http://url:port#"));
        //req.Proxy = proxy;

        //Send the request to PayPal and get the response
        StreamWriter streamOut = new StreamWriter(req.GetRequestStream(), System.Text.Encoding.ASCII);
        streamOut.Write(strRequest);
        streamOut.Close();
        StreamReader streamIn = new StreamReader(req.GetResponse().GetResponseStream());
        string strResponse = streamIn.ReadToEnd();
        streamIn.Close();

        if (strResponse == "VERIFIED")
        {
            lblmsg.Text = "Verified";
            //check the payment_status is Completed
            //check that txn_id has not been previously processed
            //check that receiver_email is your Primary PayPal email
            //check that payment_amount/payment_currency are correct
            //process payment
        }
        else if (strResponse == "INVALID")
        {
            lblmsg.Text = "Not Verified";
            //log for manual investigation
        }
        else
        {
            lblmsg.Text = "IPN Logged";
            //log response/ipn data for manual investigation
        }
    }

这里我得到的结果是“无效”!什么错了plz纠正错误。 从paypal发回http://www.Hostsite.com/member/samplepaypal.aspx页面后 它显示:

http://111.111.111.111/member/samplepaypal.aspx?tx=8L903541KW5338647&st=Pending&amt=100.00&cc=USD&**cm=&item_number=&**sig=QRmNHFf5%2fAH3io9Tn2kj%2fuicu3gpAuMew701OvazfkCdN3jSR5tmFoX3OUPbQlZGoj2PY7vI%2fP1dH84g1CEzSG9NhjnLbjuAFFHyENVsBjKb1dVvK1nZe3FJfElZt11qPfggMOPu8%2bUhDwHekJvNAcXkjLQV01vAjN1y%2fZs1rJw%3d

这些cm& item_number是空白的!如何做到“有效”回应。

帮助赞赏..!

1 个答案:

答案 0 :(得分:1)

使用回发进行验证:

如果您无法使用共享密钥进行通知验证,则可以使用回发到PayPal, 代替。您的回发必须包含您收到的完全相同的变量和值 IPN通过PayPal发布到您的服务器,它们必须处于相同的顺序。

构建回发

使用这些指南构建回发PayPal:。

  1. 您的回发必须发送至https://www.paypal.com/cgi-bin/webscr。 注意:您可以在没有SSL的情况下实施IPN,包括用于验证的回发,但是 PayPal建议不要这样做。

  2. 您的回发必须包含值为_notify-validate的变量cmd: CMD = _notify-验证

  3. 您的回发必须包含与您收到的完全相同的变量和值 来自PayPal的IPN,它们必须处于相同的顺序。

  4. 处理回传的PayPal响应 PayPal使用响应正文中的单个单词响应您的回发:已验证 或无效。 收到VERIFIED回发响应时,请对其中的数据执行以下检查 IPN:

    1. 检查payment_status是否已完成。

    2. 如果payment_status已完成,请针对之前的PayPal检查txn_id 您处理的交易以确保它不是重复的。

    3. 检查receiver_email是否是在您的PayPal帐户中注册的电子邮件地址。

    4. 检查mc_gross中携带的价格(mc_gross中携带的货币)是否为 更正项目,在item_name或item_number中携带。完成上述检查后,通知验证即告完成。您可以使用提供的信息更新数据库,并可以启动其他适当的自动化 后端处理。