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
{{ message }}
This repository was archived by the owner on Dec 13, 2018. It is now read-only.
The Official Stormpath SDK for C# and Visual Basic. Stormpath enables developers to build user authentication, user management, and security workflows quickly into their apps.
⚠️Deprecation notice: This library will no longer be updated. The Okta .NET SDK should be used for applications that connect to Okta. We're currently hard at work building a new version of the Okta SDK that supports .NET Standard and many of the popular features from the Stormpath SDK. If there are things you'd like to see, please let us know by filing an issue!
Stormpath .NET SDK
Stormpath is a complete user management API. This
library gives your ASP.NET, C#, or Visual Basic application access to all of Stormpath's features:
Robust authentication and authorization.
Schemaless user data and profiles.
A hosted login subdomain, for easy Single Sign-On across your apps.
External login with social providers like Facebook and Google, or SAML IdPs.
Secure API key authentication for your service.
In addition to these core Stormpath features, this SDK provides:
Support for .NET 4.5 and later.
Support for .NET Core and Mono.
LINQ-to-Stormpath for readable, expressive queries.
Fully dual-stack design for native asynchronous and native synchronous API calls.
Installation
Using the Nuget Package Manager
Right-click on your project in the Solution Explorer and choose Manage Nuget Packages...
Search for Stormpath. Install the Stormpath.SDK package.
Using the Package Manager Console
Simply run install-package Stormpath.SDK. Done!
Quickstart
To learn how to use the Stompath .NET SDK in a simple project, follow our easy quickstart:
If you have the dotnet tool installed (included with the .NET Core SDK), you can build on any platform supported by .NET Core:
git clone https://github.com/stormpath/stormpath-sdk-dotnet.git
cd stormpath-sdk-dotnet
git checkout develop
cd src\Stormpath.SDK.Abstractions
dotnet restore
dotnet build
cd ..\Stormpath.SDK.Core
dotnet restore
dotnet build
Contributing
Contributions, bug reports, and issues are very welcome! Stormpath regularly maintains this repository, and are quick to review pull requests and accept changes.
You can make your own contributions by forking the develop branch of this repository, making your changes, and issuing pull requests against the develop branch.
The Official Stormpath SDK for C# and Visual Basic. Stormpath enables developers to build user authentication, user management, and security workflows quickly into their apps.