I'm getting callbacks (from singly.com) in the form or URLs like
example.com/path#p1=v1&p2=v2...
What would be the Angular way to extract the query parameters? $location.search
and $routeParams
don't seem to work, I'm guessing due to the lack of the ?
in the URL.
Update: I have achieved my objective by manually attacking the URL via absUrl() but I'd like to know if there is a more Angular way of achieving the objective.