我想在我的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 应该提供什么,在代码中回调网址应该提供什么?