I have a string like this one (it's the response from the Facebook login dialog):
msft-{ProductID}://authorize/?access_token={user-access-token}&expires_in={expiration-time-of-token}
And I need to get the value of the access_token variable.
It's the same issue already answered here: Get url parameters from a string in .NET , but unfortunately the HttpUtility doesn't exist in Windows phone 8.1 runtime. Is there an alternative to HttpUtility.ParseQueryString?