You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
我在请求引用令牌和刷新令牌后,刷新令牌请求保护的api会请求成功
After requesting the access token and refresh token, the API protected by the refresh token request will be successfully accessed
{
"access_token": "2026E1EE89C99FECFB193D133326B13DC5E8469CADFB446AFBEE9821A094A33B-1",
"expires_in": 300000,
"token_type": "Bearer",
"refresh_token": "FC387A0697BDA15D718FB2ABB03A9B9DE5D941173132E7587B1EA3E36B13D4AE-1",
"scope": "api1 offline_access"
}
.AddOAuth2Introspection("introspection", options =>
{
options.Authority = “http://localhost:5001”;
// this maps to the API resource name and secret
options.ClientId = "client";
options.ClientSecret = "secret";
})
The text was updated successfully, but these errors were encountered:
我在请求引用令牌和刷新令牌后,刷新令牌请求保护的api会请求成功
After requesting the access token and refresh token, the API protected by the refresh token request will be successfully accessed
The text was updated successfully, but these errors were encountered: