We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
好像新浪方面修改了分享照片的API https://open.weibo.com/wiki/2/statuses/share
而现有的代码,如果有上传照片的话,url会被强制改为http://upload.api.* 我试着删除weibo.py的第161-162行代码,即可解决这个问题: # fix sina upload url: the_url = the_url.replace('https://api.', 'https://upload.api.')
The text was updated successfully, but these errors were encountered:
Fix incorrect API url to share pic
a50ccbf
see: michaelliao#69
No branches or pull requests
好像新浪方面修改了分享照片的API
https://open.weibo.com/wiki/2/statuses/share
而现有的代码,如果有上传照片的话,url会被强制改为http://upload.api.*
我试着删除weibo.py的第161-162行代码,即可解决这个问题:
# fix sina upload url:
the_url = the_url.replace('https://api.', 'https://upload.api.')
The text was updated successfully, but these errors were encountered: