Hey there,
Any idea what is it that I’m doing wrong while trying to retrieve the parameter “token” from my page URL? It appears as empty in the inspector
Many thanks beforehand!
Parameters are added after ? symbol, so there are no parameters in your url except debug_mode)
1 Like
The only URL parameter in your URL is debug_mode=true (there is no ‘token’ query paramter).
If ‘token=06806330000etc’ is meant to be a query parameter it needs to come after the ? (so you’ll need to change the ? before debug_mode=true to a &, or put the ‘token’ parameter after the debug_mode parameter).
1 Like
Thanks gents, my bad for not knowing how to properly construct URL params 
I was basically constructing the URL like this:

Instead of this:

Happy user showing up now!
2 Likes
system
Closed
5
This topic was automatically closed after 70 days. New replies are no longer allowed.