自定义响应代替"错误":" invalid_grant"

时间:2017-02-20 17:27:45

标签: json oauth refresh-token

我在ASP.NET Web API中使用oAuth 2.0。

在刷新令牌提供程序类中,我有这样的代码。

public Task ReceiveAsync(AuthenticationTokenReceiveContext context)
{

    string tokenId = context.Token;

    var protectedTicket = WebApiBusiness.GetProtectedTicket(tokenId);

    if (!string.IsNullOrEmpty(protectedTicket))
    {
        context.DeserializeTicket(protectedTicket);
        var result = WebApiBusiness.RemoveRefreshToken(tokenId);
    }
    else
    {
        context.Response.ContentLength = 200;
        context.Response.ContentType = "application/json";
        var ML_DefaultRes = new ML_DefaultRes()
        {
            ResponseCode = ResponseCodes.TokenInvalidRC,
            APIVersion = apiversion,
            ErrorDescription = ResponseCodes.GetRCDescription(ResponseCodes.TokenInvalidRC)
        };
        string str = JsonConvert.SerializeObject(ML_DefaultRes);
        context.Response.Write(str);
        return;
    }
}

当刷新令牌无效时,我想要JSON格式的自定义响应。 但是,不是将内容长度设置为200,而是仅将内容长度设置为25,这会导致无效的JSON响应。

他们有什么方法可以实现这一目标吗?

0 个答案:

没有答案