gpt4 book ai didi

c# - 使用c#生成不记名 token

转载 作者:行者123 更新时间:2023-12-02 08:16:35 30 4
gpt4 key购买 nike

我有一个网络应用程序。我的要求是我需要在每次登录时生成 oauth2 不记名 token 。目前我们使用thinktecture来生成token,但是这个过程每次生成token大约需要7秒的时间。有什么方法可以在不使用 thinktecture 的情况下生成 token ?

最佳答案

如果您使用个人用户帐户创建了新的ASP.NET Web应用程序 -> Web API。看一下 App_Start -> Startup.Auth.cs

它应该包含这样的内容:

PublicClientId = "self";
OAuthOptions = new OAuthAuthorizationServerOptions
{
TokenEndpointPath = new PathString("/Token"),
Provider = new ApplicationOAuthProvider(PublicClientId),
AuthorizeEndpointPath = new PathString("/api/Account/ExternalLogin"),
AccessTokenExpireTimeSpan = TimeSpan.FromDays(14),
// In production mode set AllowInsecureHttp = false
AllowInsecureHttp = true
};

// Enable the application to use bearer tokens to authenticate users
app.UseOAuthBearerTokens(OAuthOptions);

这意味着您可以发送访问 token 请求,示例请求:

enter image description here

然后您可以验证访问 token 是否有效:

enter image description here

使用此 token ,您现在可以访问用户有权访问的所有 protected 资源。

关于c# - 使用c#生成不记名 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29208217/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com