|
20精币
func UploadToAli(img []byte, imgInfo string, imgType string) string {
url := "https://kfupload.alibaba.com/mupload"
name := utils.GetFileNameByMimeType(imgInfo)
file := &utils.FormFile{
Name: name,
Key: "file",
Value: img,
Type: imgType,
}
//var header map[string]string
data := utils.AliFormPost(file, url)
ali := bed.AliResp{}
_ = json.Unmarshal([]byte(data), &ali)
return ali.Url
}
-------------------------API接口如上
地址是 https://blog.gxuzf.com/action/2020/03/2297.html 最下面的 阿里
看不懂这种,有没有会的表哥帮忙搞一下!
|
|