How do you get query information from a URL like this:
http://localhost:4200/reset?c564e265451e2e24be460f30271678b566d20fa9962000063bb6d079f5e376a0=
If it was http://...reset?token=c56...
I can grab the value using queryParams
by doing something like:
this.route.queryParams.subscribe((params)=>this.token = params['token']);`
but I can't figure out how to get the token when the query parameter has no name. I can see the value under _value when logging this.route.queryParams
to the console.