OssNetApi.m 418 B

123456789101112131415161718192021
  1. //
  2. // OssNetApi.m
  3. // TUIContact
  4. //
  5. // Created by gan on 2025/3/24.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "OssNetApi.h"
  9. @implementation OssNetApi
  10. //获取OSS配置信息
  11. +(void)getOSSInfo:(NSDictionary *_Nullable)parameters succ:(nullable GSucc)succ fail:(nullable GFail)fail{
  12. [GBaseNetApi.shareInstance httpGet:parameters url:@"http://newweb.abtim-my.com/api/oss/sts" succ:succ fail:fail];
  13. }
  14. @end