1234567891011121314151617181920212223242526 |
- //
- // RQHTTPService+MotivateAdTime.m
- // jiaPei
- //
- // Created by Ning.ge on 2025/3/13.
- // Copyright © 2025 JCZ. All rights reserved.
- //
- #import "RQHTTPService+MotivateAdTime.h"
- @implementation RQHTTPService (MotivateAdTime)
- - (RACSignal *)getMotivateAdTime {
- /// 1. 配置参数
- RQKeyedSubscript *subscript = [RQKeyedSubscript subscript];
- /// 2. 配置参数模型
- RQURLParameters *paramters = [RQURLParameters urlParametersWithMethod:RQ_HTTTP_METHOD_GET path:RQ_GET_JSAD_TIME parameters:subscript.dictionary];
-
- /// 3.发起请求
- return [[[RQHTTPRequest requestWithParameters:paramters]
- enqueueResultClass:[RQDictInfoModel class]]
- rq_parsedResults];
- }
- @end
|