gpt4 book ai didi

Golang代码上传文件到个人邮箱账户

转载 作者:数据小太阳 更新时间:2023-10-29 03:37:41 28 4
gpt4 key购买 nike

当我在收到访问 token 后在 golang 程序中提供这段代码时:

f, err := ioutil.ReadFile("C:\\Users\\vembu\\Desktop\\hi.txt")
ioutil.WriteFile("hi.txt", f, 0x777)
r, _ := http.NewRequest("POST", urlStr, bytes.NewBuffer(f))
r.Header.Add("Authorization", "Bearer "+accessobj.Access_token)
r.Header.Add("attributes", "{\"name\":\"hi.txt\",\"parent\":{\"id\":\"3098791209\"}}")r.Header.Add("file", "hi.txt")

我收到这个错误:

I face &{405 Method Not Allowed 405 HTTP/1.1 1 1 map[Allow:[GET, OPTIONS, HEAD] Content-Type:[text/html;charset=UTF-8] Content-Length:[0] Date:[Thu, 12 Mar 2015 13:07:32 GMT] Age:[0] Connection:[keep-alive] Server:[ATS]] 0xc08200b8c0 0 [] false map[] 0xc08201f2b0 0xc082060980}

谁能帮我解决添加属性和上传到盒子账号的文件名的方法吗?

最佳答案

urlStr 应该是 https://upload.box.com/api/2.0/files/content

https://developers.box.com/docs/#files-upload-a-file

如文档中所示,您可能想先使用 curl 来尝试您的查询:

curl https://upload.box.com/api/2.0/files/content \
-H "Authorization: Bearer ACCESS_TOKEN" -X POST \
-F attributes='{"name":"tigers.jpeg", "parent":{"id":"11446498"}}' \
-F file=@myfile.jpg

关于Golang代码上传文件到个人邮箱账户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29010736/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com