如何在iOS中使用条纹进行充电?

时间:2014-04-22 06:44:41

标签: ios objective-c stripe-payments

我已阅读iOS应用from here中有关条带集成的所有详细信息。并通过下载from here运行条带示例应用程序。

在运行此应用程序时,我在iPhone模拟器上测试时出现以下错误。

enter image description here

以下方法在令牌收到后调用::

- (void)hasError:(NSError *)error
{
    UIAlertView *message = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Error", @"Error")
                                                      message:[error localizedDescription]
                                                     delegate:nil
                                            cancelButtonTitle:NSLocalizedString(@"OK", @"OK")
                                            otherButtonTitles:nil];
    [message show];
}


//--Called after sucessfully token received ::
- (void)hasToken:(STPToken *)token
{
    NSLog(@"Received token %@", token.tokenId);

    NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:@"https://example.com"]];
    request.HTTPMethod = @"POST";
    NSString *body     = [NSString stringWithFormat:@"stripeToken=%@", token.tokenId];
    request.HTTPBody   = [body dataUsingEncoding:NSUTF8StringEncoding];

    [MBProgressHUD showHUDAddedTo:self.view animated:YES];

    [NSURLConnection sendAsynchronousRequest:request
                                       queue:[NSOperationQueue mainQueue]
                           completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
                               [MBProgressHUD hideHUDForView:self.view animated:YES];

                               if (error) {
                                   [self hasError:error];

                               } else {

                                   NSString *str = [[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];
                                   NSLog(@"\nStr is :::%@",str);

                                   NSLog(@"\n\nResponse is :::%@",response);

                                   [self.navigationController popViewControllerAnimated:YES];
                               }
                           }];
}

请告诉我如何解决此问题并在iOS应用上进行信用卡付款,因为在此示例代码中,有关于付款的信息。

2 个答案:

答案 0 :(得分:2)

您正在使用example.com。首先用您自己的服务器地址替换它。

答案 1 :(得分:0)

要在Stripe中为卡充电,您需要一个服务器模块。 Here详细说明了如何通过服务器模块为卡充电。如果您使用解析作为后端,则可以始终使用云代码来实现此目的。

Here是raywenderlich对使用python后端制作支付系统的解释。