在 golang中对接接口文档
假如你作为客户端对接别人的接口文档
使用 resty库
构建 multipart/form-data的请求
使用resty
client := resty.New()
client.R().SetFile(key, filePath)
SetFormData(
map[string]string{
"fileType": fileType,
"caseId": caseID,
"fileSource": fileSource,
"fileDesc": fileDesc,
"fileTime": fileTime,
})
标签:基本,resty,fileSource,string,fileType,fileTime,fileDesc,使用
From: https://www.cnblogs.com/runninginsilence/p/18007011