Paypal error : FILE SYSTEM CHECK FAILED

后端 未结 1 1773
星月不相逢
星月不相逢 2021-01-22 13:41

I know there are two posts about this error on SO. Like every google result I found, the solution is : don\'t work with Jailbroken devices. But mine is clean and my client\'s on

相关标签:
1条回答
  • 2021-01-22 13:56

    For all people like me, who

    • are using Paypal iPhone API since before august 2011
    • have migrated their mac on osX Lion
    • Now have this message during Paypal initialisation and after a new app compilation
    • ... and does NOT have a Jailbroken device, of course

    Here is the solution :

    • Just download the new API version
    • change [Paypal getInstance] by [Paypal getPayPalInst] in your code (WHY did they change that ?...)
    • change

    this callback method

    - (void)paymentFailedWithCorrelationID:(NSString *)correlationID andErrorCode:(NSString *)errorCode andErrorMessage:(NSString *)errorMessage
    

    by

    - (void)paymentFailedWithCorrelationID:(NSString *)correlationID
    

    And your done.

    0 讨论(0)
提交回复
热议问题