I have claims/Auth_token
information, which looks like
{
"claims": null,
"auth_token": "ABCDEFGHIJKLMNOP==",
"refresh_token": null,
"auth_token_expiration": "2012-09-04T06:59:13.1343331-04:00",
"refresh_token_expiration": "2013-05-01T06:59:13.1343331-04:00",
"token_type": "urn:Test1:Test2:grant-type:trusted_issuer"
}
url=www.testuri.com
Using this I need to create a utility which fetches the access token of the uri using the claims information mentioned above.
This is a JSON string
You need to create a class with properties (claims,auth_token,refresh_token...etc)
Then DeSerialize this JSON string and then you can access the token.
Now deserialize JSON:
Now use the token: