I am working on an OAUTH2 login for a winforms applications.
I have to make a request to our with some credentials, and the server will respond with a token and json format.
What's the best approach to parse out the token value?
Here is the response format:
{
"access_token":"asdfasdfasdfafbasegfnadfgasdfasdfasdf",
"expires_in":3600,
"token_type":"Bearer"
}