🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

Authlink.Auth.ServiceStack

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Authlink.Auth.ServiceStack

A ServiceStack auth provider that is integrated with the Authlink Identity Provider

1.0.3
NuGet
Version published
Maintainers
1
Created
Source

📦 Overview

Authlink.Auth.ServiceStack enables secure token-based authentication in ServiceStack applications using the IIdentityProviderClient abstraction from Authlink.Idp.Client.Core.

It allows your ServiceStack APIs to:

  • Authenticate users via your Authlink Identity Provider
  • Automatically resolve user claims and populate sessions
  • Support access and refresh token flows via OIDC

🚀 Installation

dotnet add package Authlink.Auth.ServiceStack

Or via NuGet Package Manager:

PM> Install-Package Authlink.Auth.ServiceStack

🔧 Usage Example

In your AppHost.cs:

var client = Container.GetRequiredService<IIdentityProviderClient>();

Plugins.Add(new AuthFeature(() => new AuthUserSession(), new IAuthProvider[]
{
    new AuthlinkAuthProvider(
        "https://authlink.co.za",
        "https://myapp.example.com",
        "my-client-id",
        client)
}));

📚 Documentation

Coming soon at: https://docs.authlink.co.za

📄 License

MIT

Keywords

identity

FAQs

Package last updated on 10 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts