I don't know where to get the cookie token for lmarena free and qwen web free #3781
|
Hi everyone, Please help me, I can't figure this out at all! I'm trying to use the LM Arena Free and Qwen Web Free providers, but I have no idea where to find the required cookie tokens. I've looked through the documentation but couldn't find clear instructions on how to extract them from the browser. Could someone please explain:
If anyone knows how this works, I would really appreciate your help! Thanks in advance. |
Replies: 4 comments 4 replies
|
Hey @thezukiru! Both providers need you to capture cookies from browser DevTools. Step-by-step for each: LMArena Free (
Qwen Web ( Qwen sits behind Alibaba's anti-bot layer, so you need the full cookie jar plus a bearer token.
Let me know if you hit any issues! |
|
Hey @thezukiru! Username/password auto-login for Qwen is technically possible but significantly more complex than the current cookie approach. Why cookies are preferred today: The What a user/pass flow would require: Simulating the full Aliyun auth sequence (including slider/image CAPTCHA and optional 2FA), persisting the resulting session cookies, and re-authenticating when they expire. This is what Qwen2API_Go does -- but it's fragile: any login-API change breaks it, and automation trips the WAF much faster than a real session. Current path: If you'd like to see username/password auto-login tracked as a feature, open a dedicated Ideas discussion and link to |
|
Closing this thread as stale due to inactivity. No maintainer follow-up happened after the last maintainer message for over 15 days. If this is still relevant, feel free to open a new discussion with fresh logs/steps and I’ll pick it up with updated context. |
|
Closing this thread as stale due to inactivity. No maintainer follow-up happened after the last maintainer message for over 15 days. If this is still relevant, feel free to open a new discussion with updated logs/steps and I’ll pick it up with fresh context. |
Hey @thezukiru! Username/password auto-login for Qwen is technically possible but significantly more complex than the current cookie approach.
Why cookies are preferred today: The
cna+ssxmod_itna+tokenflow reuses an already-authenticated browser session -- no CAPTCHA, no OTP/2FA to bypass, and no login-rate throttling to handle. Cookies are exactly what Qwen's WAF expects from real browser clients.What a user/pass flow would require: Simulating the full Aliyun auth sequence (including slider/image CAPTCHA and optional 2FA), persisting the resulting session cookies, and re-authenticating when they expire. This is what Qwen2API_Go does -- but it's fragile: any login-API change breaks …