我正在尝试将用户信用卡存储到 strip 中。我有一个使用支付工具包 PTKView 设置的表单。然后,一旦用户点击保存按钮,我就会创建 Stripe 所需的 STPToken 。生成 token 后,我尝试将带有用户 objectId 的 token 保存到 Stripe 作为客户。我确定问题出在服务器代码中。
一些背景知识,我使用 Parse SDK 的云代码作为我的服务器,所以我正在处理 javascript .
这里我从表单中获取信息,创建一个STPCard ,然后生成一个 token 。
PTKCard* card = self.cardView.card; // self.cardView is the PTKView
STPCard *stpcard = [[STPCard alloc] init];
stpcard.number = card.number;
stpcard.expMonth = card.expMonth;
stpcard.expYear = card.expYear;
stpcard.cvc = card.cvc;
[[STPAPIClient sharedClient] createTokenWithCard:stpcard
completion:^(STPToken *token, NSError *error) {
if (error) {
NSLog(@"error");
} else {
[self createBackendChargeWithToken:token];
}
}];
生成 token 后,我将其发送到 Parse,在那里我实现了服务器端代码来处理创建客户并将其保存到 Stripe。
- (void)createBackendChargeWithTokenSTPToken *)token
{
NSDictionary *productInfo = @{@"cardToken": [NSString stringWithFormat"%@",token],
@"objectId": [[PFUser currentUser] objectId]};
[PFCloud callFunctionInBackground"saveCardInformation"
withParameters:productInfo
block:^(id object, NSError *error) {
if (error) {
NSLog(@"error");
return ;
}
[[[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Success", @"Success")
message:nil
delegate:nil
cancelButtonTitle:NSLocalizedString(@"OK", @"OK")
otherButtonTitles:nil] show];
}];
}
现在我处理云代码中传递的 token :
var Stripe = require('stripe');
Stripe.initialize(my_key);
Parse.Cloud.define("saveCardInformation", function(request, response) {
Stripe.Customers.create({
source: request.params.cardToken,
},{
success: function(httpResponse) {
response.success("Customer created!");
},
error: function(httpResponse) {
response.error(httpResponse.message);
}
});
});
然后我收到回复说:
Error: There is no token with ID tok_15afWSDOYfVZdgZvh6qSvmmm (test mode). (Code: 141, Version: 1.6.0)
为什么这么说?据我了解,我只是在创建一个用户,所以当然没有具有指定 ID 的 token 。我知道它主要在 javascript 云代码中,但我不确定如何处理这个......有人有什么想法吗?
Best Answer-推荐答案 strong>
好的...我犯了一个小错误...显然我需要访问 STPTokens tokenId 属性...
NSDictionary *productInfo = @{@"cardToken": token.tokenId,
@"objectId": [[PFUser currentUser] objectId]};
需要彻底阅读我的代码。
关于ios - Stripe 和 Parse SDK 存储信用卡,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/28757557/
|