繁体   English   中英

使用iOS中的Stripe在卡中执行现有客户的收费

[英]Execute a charge from existing customer with card in Stripe out of iOS

我很难通过iOS应用程序以编程方式弄清楚如何做到这一点。

我正在使用(除其他之外)来自github的以下类: https : //github.com/hybrdthry911/ELStripe

类别: ELCharge.m

+(ELCharge *)charge{
   return [[ELCharge alloc]init];
}

(*****************code in between ************************)

 //Will attempt to charge either a customer or card. Exactly one must exist   
per charge. If multiple or neither exist an exception will be raised.
//Warning: This is the final step it will APPLY A CHARGE TO THE 
ACCOUNT.

-(void)createChargeWithCompletion:(ELChargeCompletionBlock)handler{
    [ELCharge createCharge:self completion:handler];
}

+(void)createCharge:(ELCharge *)charge completion
 (ELChargeCompletionBlock)handler{
 NSError *chargeError;
     if (![charge validForProcessingWithError:&chargeError]) {
          handler(nil,chargeError);
          return;
     }

     if (!chargeError) {
          [ELStripe executeStripeCloudCodeWithMethod:@"POST"    
           prefix:@"charges" parameters:[ELCharge 
           dictionaryForCreatingCharge:charge] completionHandler:^(id 
           jsonObject, NSError *error) {
           handler([ELCharge 
           chargeFromParseStripeDictionary:jsonObject],error);
       }];
   }
}

在iOS类中,我执行以下操作以创建测试费用:

//create an automatic charge in stripe from an existing customer with card   
attached to him
-(void) executeChargeInStripe:(UIButton*)sender
{

     ELCharge *charge = [ELCharge charge];

    //Assign the charge properties
    charge.customerID = @"cus_72xvQI6Q5IC9it";
    charge.currency = @"USD";
    NSNumber *chargeAmount = [NSNumber numberWithInt:111];
    charge.amountInCents = chargeAmount;


//Call ChargeMethod from Github Framework
[ELCharge createCharge:charge completion:^(ELCharge *charge, NSError 
*error)    {
    if (!error)  {
    //code for normal handling
        NSLog(@"Charge has been made successfully");
    } else {
        // error code handling
        NSLog(@"Charge NOT made");

    }
}];

}

我将其传递给以下代码:

Parse.Cloud.define("stripeHTTPRequest", function(request, response) 
{
//Check for valid pre/suf/postfixes, if they are not there do not include    
them.
var prefix = request.params["prefix"];
var suffix = "";
var postfix = "";
var secondPostfix = "";
if (!isEmpty(request.params["suffix"])) suffix =  
    '/'+request.params['suffix'];  
if (!isEmpty(request.params["postfix"])) postfix = 
    '/'+request.params['postfix'];   
if (!isEmpty(request.params["secondPostfix"])) secondPostfix = 
    '/'+request.params['secondPostfix'];

 //call from parse to stripe done by http request as parse/stripe api 
   uncomplete
   Parse.Cloud.httpRequest(
   {
        method: request.params["method"],
        //Create URL from base url and pre/suf/postfixes
        url: 'https://'+STRIPE_API_BASE_URL + prefix + suffix + postfix + 
               secondPostfix,
               headers: {
                  'Authorization': "Bearer " + STRIPE_SECRET_KEY
                         },
              params:request.params["params"],
              success: function(httpResponse) 
             {
               //response text is a json dictionary
                 response.success(httpResponse.text);
             },
        error: function(httpResponse) 
        {
            response.error(httpResponse.text);
        }
  });
});

我现在收到以下错误:未收费(我创建的IOS类发出的错误消息)。

我很惊讶我在Parse Cloud和Stripe中都没有收到错误。 例如,如果我使用一个已经使用的令牌而不是customerID,则两者都出错。 因此,我认为连接似乎可以正常工作,也许在iOS类中我做错了什么。 谢谢!

您是否已将Parse JavaScript SDK还原为1.5.0? 不再支持1.5.0之后的任何版本。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM