Advertisement
lemurtube

fb video upload

Jul 22nd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #!/usr/bin/python
  2.  
  3. # -*- encoding: utf-8 -*-
  4.  
  5. import requests
  6. access='paste your access token here'
  7. url='https://graph-video.facebook.com/100009336412443/videos?access_token='+str(access)
  8. path="/home/abc.mp4"
  9. files={'file':open(path,'rb')}
  10. flag=requests.post(url, files=files).text
  11.  
  12. print flag
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement