将Paypal IOS MSDK2.x与Kount欺诈检查结合使用时,我有一个问题。
目前,MSDK2.x将在代理
中返回付款确认"- (void)payPalPaymentViewController:(PayPalPaymentViewController *)paymentViewController didCompletePayment:(PayPalPayment *)completedPayment"
in this format of PayPalPayment class
{
"client": {
"environment": "sandbox",
"paypal_sdk_version": "2.0.0",
"platform": "iOS",
"product_name": "PayPal iOS SDK;"
},
"response": {
"create_time": "2014-02-12T22:29:49Z",
"id": "PAY-564191241M8701234KL57LXI",
"intent": "sale",
"state": "approved"
},
"response_type": "payment"
}
其中不包含信息“付款人ID”。
要使用Konut,Kount服务器需要在查询中提供/更新“付款人ID”。如果付款请求是通过web表格进行的,Paypal服务器将返回此格式的URL,则可以获得此“付款人ID”
"http://<return_url>?paymentId=PAY-6RV70583SB702805EKEYSZ6Y&token=EC-60U79048BN7719609&PayerID=7E7MGXCWTTKK2"
我的问题是,如果付款请求是从运行IOS MSDK2.x的移动设备发送的,那么有人知道如何获得“付款人ID”吗?
非常感谢。