如题,现在token失效会返回401,但是我想返回 {code:-1,msg:"token失效"} 这样的信息,该如何处理
标签:
IdentityServer4
相关问题
- Identity Server 4 - Resource Owner Password Grant
- Customizing ASP.NET Identity
- Oidc client js: silent access token renew breaks b
- Is there a way to generate an access token from wi
- Identity Server 4 Infinite Loop
相关文章
- 商城项目使用了identityServer4 , 那么客户余额等特殊信息该怎么处理。
- vue 使用 oidc-client 连接IdentityServer4
- dotnet core3.1 ocleot集成IdentityServer4 error:" Cl
- .net core identityServer4 返回401时如何自定义返回信息?
- AntiForgeryToken Expiration Blank Page
- Pass custom header value to IdentityServer4 Login
- Custom login UI for IdentityServer 4
- Oauth2 with Postman and IdentityServer4
判断 401 修改 httpstatus 为 200 context.Result=new stringresult( {code:-1,msg:"token失效"} .tojson(),"application/json");
tojson 为序列化为json 自己转一下