使用Python将照片或视频上传到Facebook

时间:2013-07-17 05:14:58

标签: python facebook video upload

我尝试使用Python将照片或视频上传到Facebook页面,但我得到了 HTTPError:HTTP错误400:错误请求。但是,当我使用表格时,它很好。 让我告诉你代码。

这是表格的代码。

<!DOCTYPE html>
<html>
<body>

<form enctype="multipart/form-data"  action="https://graph-video.facebook.com/videos/PAGE_ID/photos?access_token=ACCESS_TOKEN"  
 method="POST">
<input name="file" type="file">
<input type="submit" value="Upload" />
</form>

</body>
</html>

这是我的Python代码。

video = open(args[0])

url = 'https://graph-video.facebook.com/videos/PAGE_ID'
    data = {'access_token': 'ACCESS_TOKEN',
            'title': 'test',
            'description': 'test',
            'source' : video
           }
    data1 = urllib.urlencode(data) 
    req = urllib2.Request(url, data1)
    r = urllib2.urlopen(req)

我认为access_token不是问题,因为它在我使用表单时起作用。

请告诉我如何通过Python上传视频或照片。感谢。

1 个答案:

答案 0 :(得分:2)

这适合我。

 import requests
 url='https://graph-video.facebook.com/100000198728296/videos?access_token='+str(access)
 path="/home/abc.mp4"
 files={'file':open(path,'rb')}
 flag=requests.post(url, files=files).text
 print flag
成功上传视频

后,

标志将返回包含视频ID的 json