Callback URLs from singly.com are coming in the format of
example.com/path#p1=v1&p2=v2...
Is there a more Angular-friendly way to extract query parameters since $location.search
and $routeParams
do not work without the presence of the ?
in the URL?
Update: I managed to accomplish my goal by manually parsing the URL using absUrl(), but I am curious if there is a more Angular-esque method to achieve the same result.