使用Stripe iOS SDK中的UI组件,我可以轻松生成令牌/条带源ID客户端,以便将信用卡信息安全地传递给服务器。我似乎无法为银行帐户信息找到类似的标记化功能。我可以使用STPBankAccountParams收集银行信息客户端,但有没有办法将这些信息标记化,然后传递给服务器?
答案 0 :(得分:2)
我在STPAPIAClient
中找到了一种标记化方法。这是你在找什么?
#pragma mark - Bank Accounts
@implementation STPAPIClient (BankAccounts)
- (void)createTokenWithBankAccount:(STPBankAccountParams *)bankAccount
completion:(STPTokenCompletionBlock)completion {
NSDictionary *params = [STPFormEncoder dictionaryForObject:bankAccount];
[self createTokenWithParameters:params completion:completion];
}
@end