0

我是使用支付网关的新手。我必须在我的应用程序中使用 Zooz。

我们的客户将为 Zooz 创建一个帐户。

请告诉我我必须向客户询问我需要在应用程序中使用的 Zooz 帐户的哪些内容。像APP键,还有其他参数需要问表单客户端吗?这将在代码中使用。

4

1 回答 1

1

试试这个

invoiceRefNumber 是您的系统会计发票编号,仅用于跟踪,我们的系统不使用。appKey - 是您在注册时收到的应用密钥

创建付款请求并打开付款对话框。

-(IBAction)pay{
       ZooZ * zooz = [ZooZ sharedInstance];
       zooz.sandbox = YES;//set this if working in Sandbox mode
       ZooZPaymentRequest * req =
       [zooz createPaymentRequestWithTotal:32.1 invoiceRefNumber:@"1234" delegate:self];
       req.currencyCode = @"USD";
       [zooz openPayment:req forAppKey:@"app_id"];
 }
于 2013-08-07T07:15:07.913 回答