XuShaohua / bcloud

百度网盘的linux桌面客户端
GNU General Public License v3.0
1.92k stars 532 forks source link

网络错误 #241

Open zhangweilun opened 8 years ago

zhangweilun commented 8 years ago

昨天还一切正常,今天就全部出现了网络错误!

pingplug commented 8 years ago

应该是与 #239 重复了。。。

xiaoPierre commented 8 years ago

我也是昨天一切正常,今天一直网络错误。有人跟我一样吗?

Universebenzene commented 8 years ago

原来是大家都出问题了……

4321qasdfv commented 8 years ago

今天突然不能登录。。前几天还好好的 进去所有东西都网络错误

poplite commented 8 years ago

估计是百度那边的问题。 网页端也很卡,即使进去了下载也是网络错误或是只有10kb/s这感人的速度。 现在网页端使用的API似乎和bcloud不一样,bcloud的API现在只返回errno:-6。

suncunhu commented 8 years ago

有解决办法吗?

songxinqiang commented 8 years ago

i am not alone :(

Falser007 commented 8 years ago

我也是网络错误

laishi commented 8 years ago

同理

NickCao commented 8 years ago

我也是

YeaseonZhang commented 8 years ago

同样是网络错误,是百度的问题,还是bcloud的问题啊。

ubuntuwbw commented 8 years ago

Trouble Shooting Ways of Ubuntu

Step1:sudo gedit /usr/lib/python3/dist-packages/bcloud/auth.py Do:在get_bdstoken函数的if req:前一行添加"cookie.load_list(req.headers.get_all('Set-Cookie'))"

Step2:sudo gedit /usr/lib/python3/dist-packages/bcloud/pcs.py Do:把所有cookie.sub_output()的参数添加上'SCRC','STOKEN' 例:'Cookie': cookie.sub_output('BAIDUID', 'BDUSS', 'PANWEB', 'cflag', 'SCRC', 'STOKEN'),

Step3:删除配置数据和缓存 sudo rm -rf ~/.config/bcloud/ sudo rm -rf ~/.cache/bcloud/

Step4:重新运行Bcloud

Thanks ”poplit“ for share!

YeaseonZhang commented 8 years ago

按照这四步修改完之后,bcloud已经打不开了

2016-07-20 17:01 GMT+08:00 杠头 notifications@github.com:

Trouble Shooting Ways of Ubuntu

Step1:sudo gedit /usr/lib/python3/dist-packages/bcloud/auth.py Do:在get_bdstoken函数的if req:前一行添加"cookie.load_list(req.headers.get_all('Set-Cookie'))"

Step2:sudo gedit /usr/lib/python3/dist-packages/bcloud/pcs.py Do:把所有cookie.sub_output()的参数添加上'SCRC','STOKEN' 例:'Cookie': cookie.sub_output('BAIDUID', 'BDUSS', 'PANWEB', 'cflag', 'SCRC', 'STOKEN'),

Step3:删除配置数据和缓存 sudo rm -rf ~/.config/bcloud/ sudo rm -rf ~/.cache/bcloud/

Step4:重新运行Bcloud

Thanks ”poplit“ for share!

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/LiuLang/bcloud/issues/241#issuecomment-233893044, or mute the thread https://github.com/notifications/unsubscribe-auth/ARETPehyQgIlLs2yL726eRRgeVRAozULks5qXePzgaJpZM4InMSv .

pandaye commented 8 years ago

上面说的四步是可行的。 我试的时候,在 req = net.urlopen(url, headers={'Cookie': cookie.header_ou\ tput()}) 里添加 Step 1的那句,于是打不开,打不开的那位会不会是这个原因? 这一步应该是新建一行 cookie.load_list(req.headers.get_all('Set-Cookie')

YeaseonZhang commented 8 years ago

刚才有按照步骤做了做了一边,现在可以了。谢谢,不知道第一次,是不是哪里出问题了 ^_^

2016-07-25 21:32 GMT+08:00 pandaye notifications@github.com:

上面说的四步是可行的。 我试的时候,在 req = net.urlopen(url, headers={'Cookie': cookie.header_ou\ tput()}) 里添加 Step 1的那句,于是打不开,打不开的那位会不会是这个原因? 这一步应该是新建一行 cookie.load_list(req.headers.get_all('Set-Cookie')

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/LiuLang/bcloud/issues/241#issuecomment-234953551, or mute the thread https://github.com/notifications/unsubscribe-auth/ARETPcJfeb91j6dwH3rGLd7HTAZa00OJks5qZLrcgaJpZM4InMSv .

TyrionXu commented 8 years ago

@ubuntuwbw 感谢分享

ghost commented 8 years ago

@ubuntuwbw 感谢分享

xibeiyelang commented 7 years ago

按照上面的四个步骤进行了操作,程序打开没问题,但是还是提示bcloud网络链接错误(不知道为啥,卸载后在重新安装就好了),不过在重新安装完后并没有直接登录而是先按照 Trouble Shooting Ways of Ubuntu

Step1:sudo gedit /usr/lib/python3/dist-packages/bcloud/auth.py Do:在get_bdstoken函数的if req:前一行添加"cookie.load_list(req.headers.get_all('Set-Cookie'))"

Step2:sudo gedit /usr/lib/python3/dist-packages/bcloud/pcs.py Do:把所有cookie.sub_output()的参数添加上'SCRC','STOKEN' 例:'Cookie': cookie.sub_output('BAIDUID', 'BDUSS', 'PANWEB', 'cflag', 'SCRC', 'STOKEN'),

Step3:删除配置数据和缓存 sudo rm -rf ~/.config/bcloud/ sudo rm -rf ~/.cache/bcloud/

Step4:重新运行Bcloud 这四步先操作,再登录就可以了! 我的版本是:Ubuntu 16.04 Thanks ”poplit“ for share!

CroesusSo commented 7 years ago

Thanks a lot, it's really solve the problem