RQHTTPService+MotivateAdTime.m 720 B

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