0

我正在尝试从网络应用程序中将视频上传到我的 Vimeo 帐户,并且上传部分正在工作,但我找不到包含该redirect_url选项的方法。在 Postman 中它可以工作,但在 python 中它只是被忽略了。这是片段:

    def get(self, request):
       url = "https://api.vimeo.com/me/videos"

       payload = '{ "upload": { "approach": "post", "redirect_url": "www.example.com" }}'
       headers = {
         'Authorization': 'Bearer <access_token>',
         'Content-Type': 'text/plain',
         'redirect_url': 'www.example.com'
       }

       response = requests.request("POST", url, headers=headers, data=payload)
       print(response.text.encode('utf8'))
       return Response(data=upload_data)

上传视频(成功)后,它只是重定向到默认的 vimeo 页面。尝试了无数的变化,无法弄清楚,有没有人这样做过?

4

1 回答 1

0
'Content-Type': 'text/plain'

这应该是:

'Content-Type': 'application/json'
于 2020-04-06T21:26:28.460 回答