我有claims/Auth_token
信息,看起来像是
{
"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
使用这个我需要创建一个实用程序,它使用上面提到的声明信息获取uri的访问令牌。
答案 0 :(得分:4)
您获得的信息是JSON
您可以使用C#中的JavaScriptSerializer类将JSON反序列化为对象。
首先,您必须构建一个代表json结构的POCO对象:
public class ResponseObj
{
public string claims { get; set; }
public string auth_token { get; set; }
public string refresh_token { get; set; }
public DateTime auth_token_expiration { get; set; }
public DateTime refresh_token_expiration { get; set; }
public string token_type { get; set; }
}
之后你可以像这样反序列化它并使用结果来获取令牌:
string json = "your json string"
ResponseObj deserializedResult = new JavaScriptSerializer().Deserialize<ResponseObj>(json);
string token = deserializedResult.auth_token;
请注意,现在您可以像使用身份验证令牌一样访问响应中的所有属性。 如果您想获得可以使用的声明字符串,那么
string claims = deserializedResult.claims;
答案 1 :(得分:2)
这是一个JSON字符串
您需要创建一个包含属性的类(claim,auth_token,refresh_token ......等)
然后DeSerialize此JSON字符串,然后您可以访问该标记。
public class TokenResponse
{
public string claims { get; set; }
public string auth_token { get; set; }
public string refresh_token { get; set; }
public string auth_token_expiration { get; set; }
public string refresh_token_expiration { get; set; }
public string token_type { get; set; }
}
现在反序列化JSON:
JavaScriptSerializer js = new JavaScriptSerializer();
var token = js.Deserialize<TokenResponse>(decodedResponse);
现在使用令牌:
string authToken=token.auth_token