123456789101112131415161718192021222324252627 |
- //
- // RQHTTPService+RQApplePay.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/9/26.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQHTTPService.h"
- #define RQ_POST_ApplePay @"https://jsjp-admin.zzxcx.net/jsjp-admin/open-api/applepay"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQHTTPService (RQApplePay)
- /**
- APP内购
-
- @param receiptData 验证参数
- @param transactionIdentifier transactionId
- @param type 类型 0-正式环境 1-沙盒测试
- @return Returns a signal which will send complete, or error.
- */
- - (RACSignal *)postApplePayWithReceiptData:(NSData *)receiptData transactionIdentifier:(NSString *)transactionIdentifier type:(NSInteger)type;
- @end
- NS_ASSUME_NONNULL_END
|