I'm currently encountering an issue with query strings. When I send an activation link via email, the link contains a query string including a user activation token. Here's an example of the link:
http://localhost:3000/#/activation?activation_code=27kVNlC4ShWuL4pkH3/FhVA==
. However, when clicking on the link, the browser automatically modifies the query string to be http://localhost:3000/#/activation?activation_code=27kVNlC4ShWuL4pkH3%2FhVA
, leading to an encryption error. Any suggestions on how I can retrieve the original query string? My front end is Angular and I'm using ASP.NET Web API.