1

我在 ios 中成功集成了 PayPal MPL 库。并且工作完美。但是当我尝试向美国客户付款时,它给出了错误“系统错误。请重试字母。(ID 520002)”。我正在使用此代码进行付款。

PayPal *ppMEP = [PayPal getPayPalInst];
ppMEP.shippingEnabled = true;
ppMEP.dynamicAmountUpdateEnabled = TRUE;
ppMEP.feePayer = FEEPAYER_EACHRECEIVER;
ppMEP.delegate=self;
PayPalPayment *currentPayment = [[PayPalPayment alloc] init];
currentPayment.paymentCurrency = @"USD";
currentPayment.paymentType = TYPE_SERVICE;
currentPayment.subTotal = [NSDecimalNumber decimalNumberWithString:[NSString        
currentPayment.recipient =recipientString;
currentPayment.merchantName = [NSStringstringWithFormat:@"%@xxxRoyalties%@",merchantNameString,setMonthsButtonTitle];
[ppMEP checkoutWithPayment:currentPayment];

我还附上了错误图片。

4

1 回答 1

1

经过大量的谷歌搜索和 PayPal 的一些转换后,我发现它是错误的。带有描述消息的内部错误INTERNAL_ERROR&message=无效负载大小。当前有效载荷大小=215756,最大有效载荷大小=204800。使用 MPL 的人可以使用新的 iOS SDK 。它在 MPL PayPal 库工作的所有地方都可以正常工作。直接卡设施仅在美国、英国和加拿大可用。

于 2013-09-13T12:01:40.530 回答