通过curl命令发布微博

时间:2022-03-28 08:41:35
获得access token需要下面两步:
1> 在浏览器上获得code
      https://api.weibo.com/oauth2/authorize?client_id=568220280&redirect_uri=https://api.weibo.com/oauth2/default.html&response_type=code
     在打开的页面上输入用户名和密码,点授权按钮。
获得的code 在地址栏中,如下:https://api.weibo.com/oauth2/default.html? code=d9412acdd7e1a9c60b8c84892d7e80ce

 2> 在终端输入如下命令获得access token
      curl -d "client_id=568220280&client_secret=56114b682ef16f47fe2d6d467381ba5c&grant_type=authorization_code& code=d9412acdd7e1a9c60b8c84892d7e80ce&redirect_uri=https://api.weibo.com/oauth2/default.html" "https://api.weibo.com/oauth2/access_token"



curl -k -F access_token=2.00hone4D0ODM9ccc404334c137PJFB -F status=testing -F visible=0 -F pic=@/home/zhanglanyue/tmp/test.jpg https://upload.api.weibo.com/2/statuses/upload.json