Xdynix

Results 37 comments of Xdynix

> Chrome 100又把force-color-profile删了,看上面的评论这个问题是可解的,想了解下有没有这样的计划? @std4453 我也遇到了同样的问题,找到了这个临时解决方案:https://superuser.com/a/1714177 > Launch Chrome adding the following switch to the target field: `--force-color-profile=srgb`

> > Pixiv now follows [RFC7636](https://tools.ietf.org/html/rfc7636). We won't be able to use (old) password login again, but there is a way to automate token retrieval without traffic sniffing. I've implemented...

> > > > Pixiv now follows [RFC7636](https://tools.ietf.org/html/rfc7636). We won't be able to use (old) password login again, but there is a way to automate token retrieval without traffic sniffing....

> > > > Pixiv now follows [RFC7636](https://tools.ietf.org/html/rfc7636). We won't be able to use (old) password login again, but there is a way to automate token retrieval without traffic sniffing....

Not sure the purpose of this thread, but here is mine. It utilized `tqdm` to create a nice looking progress bar. Code ```python import os from concurrent.futures import ThreadPoolExecutor from...

The message suggests that there is some sanity level restriction. It's also not visible on Pixiv's iOS app, and I can't find any settings on the web or in the...

参考 #158 ,已经不能用用户名+密码登录了。需要先用其他方法获取`refresh_token`。

It's up to the server to decide whether a captcha will be required, which seems pretty random to us. Whether to use `set_auth()` doesn't help much on this. You need...

`set_accepted_language` 会改变返回的结果里的 `tag` 的翻译文本。 ```python3 api = get_pixiv_api() pid = 114518297 print('Without Accepted-Language:') response = api.illust_detail(pid) for tag in response.illust.tags[:5]: print(tag.name, tag.translated_name) print('\n') print('With Accepted-Language:') api.set_accept_language('zh-hans') response = api.illust_detail(pid) for...

> So I solved this issue temporarily by following the post. It's working when I typed the command below in the target section from properties like image. --disable-features=LockProfileCookieDatabase @jxchlee Confirmed...