有没有办法在条带中创建客户

时间:2017-01-13 07:24:56

标签: ios swift xcode strip

我正在尝试在我的应用程序中实现Stripe Payment Gateway。我已成功生成令牌。但是现在我想在我的订阅计划中添加或创建新客户,这已在Stripe Dashboard中描述。有一些代码用于创建令牌

STPAPIClient.shared().createToken(withCard: stripCard, completion: { (token, error) -> Void in
        if error != nil {
            let errorDes = error! as NSError
            self.handleError(error: errorDes.localizedDescription)
            return
        }
        self.postStripeToken(token: token!)
    })

之后我想创建一个客户,但我找不到任何快捷Stripe class。 创建customer的步骤是什么。

This is the function where i am getting token

func postStripeToken(token: STPToken) {
    print("STPToken=\(token)")
}

已更新 I am sending this token to the api call and make subscription or payment from the api call 所以苹果拒绝了我的申请和反馈意见。

我正在使用Api Call,但Itune Store Has reject my application的消息是“我们注意到您的应用提供了访问外部购买机制或在应用中使用订阅的权限,这不符合App Store评论指南。具体而言,您的应用允许用户在不使用In App Purchase的情况下获取应用内的会员资格。

  

Itune商店拒绝我的申请with the message我们注意到您的应用可以访问外部购买机制或在应用中使用的订阅,这不符合App Store审核指南。具体而言,您的应用允许用户在不使用In App Purchase的情况下获取应用内的会员资格。

0 个答案:

没有答案