Hi all,
I’m stuck on what should be a simple two-step flow:
- HTTP POST →
https://app.leginet.eu/index.php
2.Body (x-www-form-urlencoded):
– Follow redirect
– Share cookies with other HTTP modules
The response is 200 and contains
Set-Cookie: PHPSESSID=b6211t92co02qmn2ejn8uo0g83; path=/
Under Output → Cookie headers the session is listed correctly.
3. HTTP GET (immediately after, same route) →
https://app.leginet.eu/pages/cases/view_html.php?do=6
– Share cookies with other HTTP modules
– (also tried adding a Referer header)
Problem:
In the GET module’s Input pane I always see Cookie headers → empty.
Server returns an empty body (because I’m not considered logged in).
Things I verified:
- Both requests use exactly the same domain + protocol (
https://app.leginet.eu
). - Running the entire scenario, not “Run this module only”.
- No iterator / router between POST and GET – they’re consecutive.
- If I copy the PHPSESSID manually into the GET’s custom headers (
Cookie: PHPSESSID=…
) it works, so the session itself is valid. - Tried with and without
Follow redirect
on both modules. - Tried disabling
Parse response
– no change. - Tried adding a dummy path in the cookie (
path=/
). Make still doesn’t forward it.
Is there a known caveat with Make’s “Share cookies with other HTTP modules”?
Any workaround (besides manual parsing + Set variable) to pass the cookie automatically?
Thanks in advance for any insight!