2

我想在我的 iPhone 应用程序中集成 Mobile Express CheckOut Paypal。我已经浏览了文档和示例代码,即 MECL_Pizza_Non_Web 示例代码也将它集成到我的应用程序中,但是当我运行我的应用程序时,我无法获得 drt 和令牌值。此方法返回空值。

- (void)receivedDeviceReferenceToken:(NSString *)token {
    //store the token for later use

    [ECNetworkHandler sharedInstance].deviceReferenceToken = token;


    //carry on to the review page
    [self reviewOrder:nil];
}

谁能指导我如何获取它,因为它需要传入url

https://www.paypal.com/cgi-bin/webscr?cmd=_express-checkout-mobile&drt=valueFromMobileExpressCheckoutLibrary&token=valueFromSetExpressCheckoutResponse _

4

1 回答 1

0

确保 App-ID 适合 PayPal 的环境。例如 ENV_SANDBOX 是 APP-80W284485P519543T。

[[PayPal getPayPalInst] fetchDeviceReferenceTokenWithAppID:@"APP-80W284485P519543T" forEnvironment:ENV_SANDBOX withDelegate:self];

并且您还可以在应用程序运行时检查控制台。

于 2013-05-09T16:11:51.487 回答