[10:47:17] Huh. What does "installer-name" do in the extra field of composer.json? [21:16:15] hello all [21:16:45] I'm having a strange issue where I can't stay logged in, using the api with luasec [21:17:27] I copied all the requests coming in and out for a sequence of check login, login, check login on https://www.mediawiki.org/wiki/User:Trougnouf/sandbox [21:18:30] i feel like it might have something to do with the cookies? i had an issue with them before (being required to login) and i solved it by setting the "set-cookie" incoming header as the "cookie" outgoing header [21:30:15] I added that to my previous issue on https://www.mediawiki.org/wiki/Topic:Ujvkidcn42yftel4 (idk if I should create a new one since it's unrulated?) [21:31:20] Are you sending the cookies back again? [21:32:22] yes [21:32:42] as they were received (under the "Cookie" header) [22:11:34] the commonswikiSession I receive is never the same, that seems off to me (and it gets deleted right after my "successful" login) [22:13:19] ¿it gets deleted? [22:13:36] note that the cookies should be sent on the next requests [22:13:44] not just on the one following to the Set-Cookie [22:14:14] (up to the expiry, but it isn't important for this) [22:20:28] I save the latest cookie I get from each response, and send that cookie with each of my requests. [22:20:42] yes, I get ["set-cookie"] = "commonswikiSession=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; Max-Age=0; path=/; secure; httponly, WMF-Last-Access=01-Sep-2018;Path=/;HttpOnly;secure;Expires=Wed, 03 Oct 2018 12:00:00 GMT, GeoIP=BE:BRU:Brussels:50.85:4.35:v4; Path=/; secure; Domain=.wikimedia.org" [22:21:12] (on the next request after a "successful" login) [22:44:46] that's wrong [22:45:06] you are not supposed to send the expires, max-age, etc. [22:45:31] plus, you may need to send *several* cookies [22:54:07] see my reply on https://www.mediawiki.org/wiki/Topic:Ujvkidcn42yftel4 [23:02:42] Thank you! I'm reading into it :)