我是使用支付网关的新手。我必须在我的应用程序中使用Zooz。
我们的客户将为Zooz创建一个帐户。
请告诉我,我需要向客户询问有关我需要在应用中使用的Zooz帐户的内容。像APP键一样,还有其他参数我需要问客户吗?将在代码中使用。
答案 0 :(得分: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"];
}