我正在使用MPL进行自适应付款。一切工作正常,但我想要PayPal交易详细信息,但付款后只返回了paykey作为响应。

    public void PayPalActivityResult(int requestCode, int resultCode, Intent intent) {
        switch (resultCode) {
        case Activity.RESULT_OK:
            // The payment succeeded
            String payKey = intent.getStringExtra(PayPalActivity.EXTRA_PAY_KEY);
            Log.d("payKey", payKey+"");
            this.paymentSucceeded(payKey);
            break;
        case Activity.RESULT_CANCELED:
            this.paymentCanceled();
            break;
        case PayPalActivity.RESULT_FAILURE:
            String errorID = intent.getStringExtra(PayPalActivity.EXTRA_ERROR_ID);
            String errorMessage = intent.getStringExtra(PayPalActivity.EXTRA_ERROR_MESSAGE);
            this.paymentFailed(errorID, errorMessage);
        }
    }


因此,有任何解决方案都可以通过Paykey来获取交易详细信息,或者通过其他方式来获取交易详细信息。

请给我一些建议或解决方案。

最佳答案

我已经通过即时付款通知(IPN)获得了贝宝交易详细信息。
我已经设置了一个IPN URL,例如:

PayPalAdvancedPayment advPayment = new PayPalAdvancedPayment();
/*
some block of code
*/

 advPayment.setIpnUrl("IPN-Url");// this additional line i have attached to make code


然后它将交易详细信息发送到我的服务器。

10-01 23:45