在Square Connect中的URL Scheme和callback url中应该提供什么

时间:2017-04-15 07:28:43

标签: ios objective-c square-connect

我想在我的ios应用程序中使用方形连接作为支付网关。我在方形连接网站以及 Info.plist中的 Ios app Url scheme 中应该给出的内容很困惑文件,也在我的代码中。

我做过不同类型的

NSURL *const callbackURL = [NSURL URLWithString:@"your-url-scheme://myCallback"];
SCCMoney *const amount = [SCCMoney moneyWithAmountCents:100 currencyCode:@"USD" error:NULL];
[SCCAPIRequest setClientID:@"YOUR_CLIENT_ID"];
SCCAPIRequest *request = [
   SCCAPIRequest requestWithCallbackURL:callbackURL 
   amount:amount
   userInfoString:nil
   merchantID:nil
   notes:@"Coffee"
   customerID:nil
   supportedTenderTypes:SCCAPIRequestTenderTypeAll
   clearsDefaultFees:NO
   returnAutomaticallyAfterPayment:NO
   error:&error
];

在图片中的 Ios app Url scheme 应该提供什么,在代码中回调网址应该提供什么?

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以为您的应用选择网址方案。如果您查看示例应用程序的info.plist,则会使用hellocharge。您需要选择一个用于您的应用程序。

另请参阅Square Point of Sale iOS guide