Hello,
I have an issue related to query parameter.
I want to send an auth token to my server through a query parameter but it is sanitized by the client before it is send.
Sometimes, the token contains special caracters like "+" and necessarily end by "=".
When these characters are cleaned by the client, my server refuse the connection because the token stored in db is not strictly equal to the other one.
I can manage the "=" because it is necessarily at the end but I'm stuck with the others.
Does anyone got an idea to resolve my issue ?
Thanks !
Hello,
I have an issue related to query parameter.
I want to send an auth token to my server through a query parameter but it is sanitized by the client before it is send.
Sometimes, the token contains special caracters like "+" and necessarily end by "=".
When these characters are cleaned by the client, my server refuse the connection because the token stored in db is not strictly equal to the other one.
I can manage the "=" because it is necessarily at the end but I'm stuck with the others.
Does anyone got an idea to resolve my issue ?
Thanks !