Square は最近、「アプリから Square Register トランザクションを開始する」セクションで 説明されているように、OAuth マーチャント認証の要件を削除しました。
アプリが Square Register アプリにポップアップ表示されると、Square アプリにアラート ポップアップが表示され、次のように表示されます。
「API エラー: クライアント ID が指定されていません」
オープンスクエアを呼び出すときに、アプリに「client_id」を明確にリストしているにもかかわらず。私のコードは以下です。 それを修正する方法はありますか?
-(void)squarePaymentWithName:(NSString *)name{
//Specify amount of money to charge
float orderPriceFloat = [Order orderTotalPrice];
float orderPriceFloatCents = orderPriceFloat * 100;
NSInteger orderPriceFloatCentsInteger = [[NSNumber numberWithFloat:orderPriceFloatCents] integerValue];
NSString *amountString = [NSString stringWithFormat:@"%ld", (long)orderPriceFloatCentsInteger];
NSDictionary *squareDictionary = @{@"callback_url": @"<CALLBACK_URL>",
@"client_id": @"<CLIENT_ID>",
@"version": @"1.2",
@"amount_money":
@{@"amount": amountString,
@"currency_mode":@"USD"
},
@"options":
@{@"supported_tender_types": @[@"CREDIT_CARD", @"SQUARE_GIFT_CARD"],
@"auto_return": @"true"
}
};
NSString *jsonString = [NSString stringWithFormat:@"%@", squareDictionary];
NSString *encodedString = [jsonString stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]]; //encode the string
NSString *scheme = [NSString stringWithFormat:@"square-commerce-v1://payment/create?data=%@", encodedString]; //input the string to the url
UIApplication *application = [UIApplication sharedApplication];
NSURL *URL = [NSURL URLWithString:scheme];
BOOL canOpen = [application canOpenURL:URL]; //open the url
[application openURL:URL];
}
jsonString の NSLog は次のとおりです。
{
"amount_money" = {
amount = 250;
"currency_mode" = USD;
};
"callback_url" = CALLBACK_URL;
"client_id" = CLIENT_ID;
options = {
"auto_return" = true;
"supported_tender_types" = (
"CREDIT_CARD",
"SQUARE_GIFT_CARD"
);
};
version = "1.2";
}
また、実際の値を入れたくなかったので、入力した「CALLBACK_URL」と「CLIENT_ID」はプレースホルダーです。
ありがとう!