我想在我的iPhone App中集成Mobile Express CheckOut Paypal。我已经浏览了文档和示例代码,即MECL_Pizza_Non_Web示例代码也将它集成到我的应用程序中,但是当我运行我的应用程序时,我无法获得drt和令牌值。此方法返回null值。
- (void)receivedDeviceReferenceToken:(NSString *)token {
//store the token for later use
[ECNetworkHandler sharedInstance].deviceReferenceToken = token;
//carry on to the review page
[self reviewOrder:nil];
}
任何人都可以指导我如何获取它,因为它需要传递网址
https://www.paypal.com/cgi-bin/webscr?cmd=_express-checkout- mobile& drt = valueFromMobileExpressCheckoutLibrary& token = valueFromSetExpressCheckoutResponse
答案 0 :(得分:0)
确保App-ID适合PayPal的环境。例如ENV_SANDBOX是APP-80W284485P519543T。
[[PayPal getPayPalInst] fetchDeviceReferenceTokenWithAppID:@"APP-80W284485P519543T" forEnvironment:ENV_SANDBOX withDelegate:self];
您还可以在应用运行时检查控制台。