Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stormpath/stormpath-sdk-dotnet
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.
https://github.com/stormpath/stormpath-sdk-dotnet
Last synced: 9 days ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/stormpath/stormpath-sdk-dotnet
- Owner: stormpath
- License: apache-2.0
- Archived: true
- Created: 2015-07-29T21:34:48.000Z (over 9 years ago)
- Default Branch: develop
- Last Pushed: 2017-05-19T21:12:05.000Z (over 7 years ago)
- Last Synced: 2024-05-29T04:44:18.822Z (5 months ago)
- Language: C#
- Homepage:
- Size: 6.86 MB
- Stars: 53
- Watchers: 37
- Forks: 13
- Open Issues: 1
-
Metadata Files:
- Readme: README.MD
- Changelog: CHANGELOG.MD
- License: LICENSE
Awesome Lists containing this project
- awesome-dotnet-core - stormpath-sdk - Build [simple, secure web applications](https://github.com/stormpath/stormpath-aspnetcore) with Stormpath and ASP.NET Core.(Deprecated: It will longer get updated as of March 2017 after joining OKTA) (Frameworks, Libraries and Tools / Authentication and Authorization)
- fucking-awesome-dotnet-core - stormpath-sdk - Build <b><code> 18⭐</code></b> <b><code> 2🍴</code></b> [simple, secure web applications](https://github.com/stormpath/stormpath-aspnetcore)) with Stormpath and ASP.NET Core.(Deprecated: It will longer get updated as of March 2017 after joining OKTA) (Frameworks, Libraries and Tools / Authentication and Authorization)
- awesome-dotnet-core - stormpath-sdk - Build [simple, secure web applications](https://github.com/stormpath/stormpath-aspnetcore) with Stormpath and ASP.NET Core.(Deprecated: It will longer get updated as of March 2017 after joining OKTA) (Frameworks, Libraries and Tools / Authentication and Authorization)
- awesome-dotnet-core - stormpath-sdk - Stormpath使开发人员能够将用户身份验证,用户管理和安全工作流程快速构建到其应用程序中。 (框架, 库和工具 / 身份认证和授权)
README
# Stormpath is Joining Okta
We are incredibly excited to announce that [Stormpath is joining forces with Okta](https://stormpath.com/blog/stormpaths-new-path?utm_source=github&utm_medium=readme&utm-campaign=okta-announcement). Please visit [the Migration FAQs](https://stormpath.com/oktaplusstormpath?utm_source=github&utm_medium=readme&utm-campaign=okta-announcement) for a detailed look at what this means for Stormpath users.We're available to answer all questions at [[email protected]](mailto:[email protected]).
:warning: **Deprecation notice: This library will no longer be updated. The [Okta .NET SDK](https://github.com/okta/oktasdk-csharp) 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](https://github.com/okta/oktasdk-csharp/issues)!
# Stormpath .NET SDK [![NuGet](https://img.shields.io/nuget/v/Stormpath.SDK.svg)](https://www.nuget.org/packages/Stormpath.SDK)
[Stormpath](https://stormpath.com) 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
1. Right-click on your project in the Solution Explorer and choose **Manage Nuget Packages...**
2. 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:
* [C# Quickstart](http://docs.stormpath.com/csharp/product-guide/latest/quickstart.html)
* [Visual Basic Quickstart](http://docs.stormpath.com/vbnet/product-guide/latest/quickstart.html)## Build Instructions
#### Building with Visual Studio
Building the SDK requires Visual Studio 2015 or later.
1. Use `git clone` or the Visual Studio GitHub extension to check out the `develop` branch.
2. Open `stormpath-sdk-dotnet\Stormpath.SDK.sln` in Visual Studio.
3. On first build, the required NuGet packages will resore. If not, [enable automatic package restore](http://stackoverflow.com/a/29708080/3191599).#### Building with `dotnet`
If you have the `dotnet` tool installed (included with the [.NET Core SDK](https://www.microsoft.com/net/core)), 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 developcd src\Stormpath.SDK.Abstractions
dotnet restore
dotnet buildcd ..\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.
## Copyright
Copyright © 2013-2016 Stormpath, Inc. and contributors.
This project is open-source via the [Apache 2.0 License](http://www.apache.org/licenses/LICENSE-2.0).