zhaozhiming

Results 23 comments of zhaozhiming

微信 Version 3.1.6 (19045) Beta 9,macos 11.4 昨天也收到警告 吓得卸载了助手

我现在拿到的这个token是用户授权后从request里面传过来的: String signedRequest = request.getParameter("signed_request"); 不是真正可以使用的token,需要将它解析后才能得到正确的token Oauth auth = new Oauth(); auth.parseSignedRequest(signedRequest); 不知道你的客户端有没有这段方法的封装实现呢?谢谢

是的,就是sina官方给的java sdk包。 我的是一个新浪微博站内应用,用的是从request取signed_request参数来获取token,而不是通过code来获取token。

是用OAuth2认证的,但是OAuth2认证有2种类型,一种是code,是针对站外应用的,一种是request_token,是针对站内应用的,sina的官网文档上没有特别说明,我也是折腾了好久才知道的。 如果没有好的办法,就只能用回sina的java sdk包了,谢谢

Same problem here. [The solution mentioned here](https://github.com/bitcoinjs/bitcoinjs-lib/issues/976#issuecomment-368261162) not work for me. It make the project can't start. Any other solution or document of this problem?

有用谢谢,不过要改的`/xuexi/code/TechXueXi/SourcePackages/pdlearn/score.py`这个文件 > 之前出现类似的问题,通过该score.py的代码改好了。 可以照着改试试,不知道你的问题和我的是不是一样的 > > ```python > def get_score(cookies): > chat_id = None > th_name = threading.current_thread().name > if "开始学xi" in th_name: > chat_id = th_name[:th_name.index("开始学xi")] > requests.adapters.DEFAULT_RETRIES =...

我也是一天后就失效了,打印出来是这样: ``` cookie is: {'domain': '.xuexi.cn', 'expiry': 1676628113, 'httpOnly': False, 'name': 'video_log_gray', 'path': '/', 'secure': False, 'value': '1'} cookie is: {'domain': '.xuexi.cn', 'expiry': 1676628113, 'httpOnly': False, 'name': 'scoreAccessDeny', 'path': '/',...

> 解决了,发现是httpx版本的问题,将版本设置为0.24.1可以解决这个问题。 !pip install httpx==0.24.1 It works. Thanks

> Are you using Warp in the same environment (also on your laptop)? Yes.