ServiceStack 和 Auth0 [英] ServiceStack and Auth0

查看:40
本文介绍了ServiceStack 和 Auth0的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望使用 Auth0 作为 ServiceStack 的身份验证提供程序.Auth0 上记录了一个很棒的示例应用程序,它适用于 &在使用 ServiceStack 和使用 ServiceStack.Host.MVC 时效果很好:https://auth0.com/docs/quickstart/webapp/servicestack/01-login.

I am looking to use Auth0 as the authentication provider for ServiceStack. There is a great sample application documented at Auth0 which applies & works well when working with ServiceStack and using ServiceStack.Host.MVC: https://auth0.com/docs/quickstart/webapp/servicestack/01-login.

但是,在我不使用 MVC & 的情况下,我不知道如何构造授权 URL 并将用户重定向到该 URL.AccountController 重定向用户.如果我想按照下面的 MVC 示例代码复制逻辑,如何使用 ServiceStack Auth 插件构建重定向 URL:

However, I am at a loss how to construct the authorization URL and redirect the user to that URL in a scenario where I am NOT using MVC & the AccountController to redirect the user. How can I construct the redirect URLs using ServiceStack Auth Plugin, if I want to replicate the logic as per MVC sample code below:

public class AccountController : Controller
{
  public ActionResult Login()
  {
    string clientId = WebConfigurationManager.AppSettings["oauth.auth0.AppId"];
    string domain = WebConfigurationManager.AppSettings["oauth.auth0.OAuthServerUrl"].Substring(8);

    var redirectUri = new UriBuilder(this.Request.Url.Scheme, this.Request.Url.Host, this.Request.Url.IsDefaultPort ? -1 : this.Request.Url.Port, "api/auth/auth0");

    var client = new AuthenticationApiClient(new Uri($"https://{domain}"));
    var authorizeUrlBuilder = client.BuildAuthorizationUrl()
        .WithClient(clientId)
        .WithRedirectUrl(redirectUri.ToString())
        .WithResponseType(AuthorizationResponseType.Code)
        .WithScope("openid profile")
        .WithAudience($"https://{domain}/userinfo");


    return Redirect(authorizeUrlBuilder.Build().ToString());
 }
}

推荐答案

对于所有感兴趣的人,这里是我最终采用的解决方案.

For all who are interested,here is the solution I ended up adopting.

步骤:

1) 创建一个 Auth0 插件(参见要点 此处)

1) Create an Auth0 plugin (see gist here)

2) 在您的 AppHost 中注册插件.

2) Register the Plugin in your AppHost.

Plugins.Add(new AuthFeature(() => new Auth0UserSession(), new IAuthProvider[] {
    new Auth0Provider(appSettings,appSettings.GetString("oauth.auth0.OAuthServerUrl"))
}));

3) 在您的 Web.Config 中添加相关键.

3) Add the relevant keys in your Web.Config.

<appSettings>
   <add key="oauth.auth0.OAuthServerUrl" value="https://xxxxxxx.auth0.com" />
   <add key="oauth.auth0.AppId" value="xxxxxx" />
   <add key="oauth.auth0.AppSecret" value="xxxxxxx" />
</appSettings>

这篇关于ServiceStack 和 Auth0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆