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