Adsk.Platform.Authentication
0.0.14
See the version list below for details.
dotnet add package Adsk.Platform.Authentication --version 0.0.14
NuGet\Install-Package Adsk.Platform.Authentication -Version 0.0.14
<PackageReference Include="Adsk.Platform.Authentication" Version="0.0.14" />
paket add Adsk.Platform.Authentication --version 0.0.14
#r "nuget: Adsk.Platform.Authentication, 0.0.14"
// Install Adsk.Platform.Authentication as a Cake Addin #addin nuget:?package=Adsk.Platform.Authentication&version=0.0.14 // Install Adsk.Platform.Authentication as a Cake Tool #tool nuget:?package=Adsk.Platform.Authentication&version=0.0.14
Adsk.Platform.Authentication
The Adsk.Platform.DataManagement
toolkit provides a set of APIs to interact with the Autodesk Authentication Service.
Documentation
More information can be found here.
Installation
dotnet add package Adsk.Platform.Authentication
Usage
The root object is AuthenticationClient
. This object provides access to the Authentication
API and the Helpers
method.
2 legged authentication
Getting a 2-legged access token is a common scenario. The SDK provides a helper class to simplify:
// Create a new instance of the AuthenticationClient
var authClient = new AuthenticationClient();
// Use helpers to get a 2-legged access token
AuthTokenExtended authToken = await authClient.Helper.GetTwoLeggedToken(
APS_CLIENT_ID,
APS_CLIENT_SECRET,
[AuthenticationScopeDefaults.DataWrite, AuthenticationScopeDefaults.DataRead]);
Here is an example of how to get the hub list:
using Autodesk.DataManagement;
using Autodesk.Authentication;
public async Task<Hubs> GetHub()
{
var APS_CLIENT_ID="abcd"; // Replace with your client id
var APS_CLIENT_SECRET="1234"; // Replace with your client secret
AuthenticationClient authClient = new();
async Task<string> getAccessToken()
{
var token = await authClient.Helper.GetTwoLeggedToken(APS_CLIENT_ID, APS_CLIENT_SECRET, [ AuthenticationScopeDefaults.DataWrite]);
return token?.AccessToken is null ? throw new InvalidOperationException() : token.AccessToken;
}
var DMclient = new DataManagementClient(getAccessToken);
var hubs = await DMclient.DataMgtApi.Project.V1.Hubs.GetAsync();
return hubs;
}
3 legged authentication
This SDK depends on AspNet.Security.OAuth.Autodesk
that leverages the ASP.NET Core authentication middleware to authenticate users with Autodesk.
In the
program.cs
file, add the authentication middleware:using Microsoft.AspNetCore.Authentication.Cookies; var builder = WebApplication.CreateBuilder(args); builder.Logging.ClearProviders(); builder.Logging.AddConsole(); builder.Services.AddControllers(); //Define the default authentication scheme // The cookie contains the paths to your sign in and sign out endpoints builder.Services.AddAuthentication(options => { options.DefaultScheme = CookieAuthenticationDefaults.AuthenticationScheme; }) .AddCookie(options => { options.LoginPath = "/signin"; options.LogoutPath = "/signout"; }); // Add Autodesk authentication builder.Services.AddAuthentication().AddAutodesk(options => { options.ClientId = builder.Configuration["AUTODESK_CLIENT_ID"] ?? throw new ArgumentException("'AUTODESK_CLIENT_ID' is undefined"); options.ClientSecret = builder.Configuration["AUTODESK_CLIENT_SECRET"] ?? throw new ArgumentException("'AUTODESK_CLIENT_SECRET' is undefined"); options.Scope.Add("data:read"); options.CallbackPath = "/signin-autodesk"; options.SaveTokens = true; // Save the access and refresh tokens that will accessible in the HttpContext }); var app = builder.Build(); app.UseDefaultFiles(); app.UseStaticFiles(); // Configure the HTTP request pipeline. app.UseHttpsRedirection(); app.UseAuthentication(); app.UseAuthorization(); app.MapControllers(); app.MapFallbackToFile("/index.html"); app.Run();
Create a controller, handling
SignIn
andSignOut
. In your controllertest.cs
:[ApiController] [Route("api/[controller]")] public class Test() : ControllerBase { private HttpClient _client = new(); [HttpGet("~/signin")] public IActionResult SignIn() { // Instruct the Autodesk authentication middleware to redirect the user agent to the Autodesk login page return Challenge(new AuthenticationProperties { RedirectUri = "/" }, AutodeskAuthenticationDefaults.AuthenticationScheme); } [HttpGet("~/signout")] public IActionResult SignOutCurrentUser() { // Instruct the cookies middleware to delete the local cookie created // when the user agent is redirected from the external identity provider // after a successful authentication flow. return SignOut(new AuthenticationProperties { RedirectUri = "/" }, CookieAuthenticationDefaults.AuthenticationScheme); } [HttpGet("authToken")] [Authorize] //This endpoint is protected by the Autodesk authentication middleware and requires a valid access token (`Authorize` attribute) public async Task<IActionResult> GetTokenAsync() { // The middleware stores the access token in the HttpContext // Ensure that `options.SaveTokens = true` is set in the `AddAutodesk`method in the `program.cs`file (see step 1) var accessToken = await HttpContext.GetTokenAsync(AutodeskAuthenticationDefaults.AuthenticationScheme, "access_token"); if (string.IsNullOrEmpty(accessToken)) { return Unauthorized("No access token available."); } return Ok(accessToken); } }
The
{root}/signin
endpoint will redirect the user to the Autodesk login page. Once the user is authenticated, the user will be redirected to the{root}/
endpoint.Then you can use the
{root}/api/test/authToken
endpoint to get the access token.
Limitations
Get User info
The endpoint to get user info is only available in the Helper
. Example:
var authClient = new AuthenticationClient();
var userInfo=authClient.Helper.GetUserInfoAsync("your three legged token");
Advanced
2 legged authentication
The code below shows how to get a 2-legged access token without using the Helper
class.
var body = new TokenPostRequestBody()
{
GrantType = Granttype.Client_credentials,
Scope = "data:read data:write"
};
var authString = AuthenticationClientHelper.CreateAuthorizationString(APS_CLIENT_ID, APS_CLIENT_SECRET);
AuthToken authToken2 = await authClient.Authentication.V2.Token.PostAsync(body, r =>
{
r.Headers.Add("Authorization", authString);
});
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- Adsk.Platform.HttpClient (>= 0.0.14)
- AspNet.Security.OAuth.Autodesk (>= 8.0.0)
- Microsoft.Kiota.Abstractions (>= 1.9.7)
- Microsoft.Kiota.Serialization.Form (>= 1.2.5)
- Microsoft.Kiota.Serialization.Json (>= 1.3.3)
- Microsoft.Kiota.Serialization.Multipart (>= 1.1.5)
- Microsoft.Kiota.Serialization.Text (>= 1.2.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.1.3 | 84 | 10/17/2024 |
0.1.2 | 77 | 10/16/2024 |
0.1.1 | 76 | 10/16/2024 |
0.1.0 | 85 | 10/16/2024 |
0.0.16 | 79 | 10/14/2024 |
0.0.15 | 74 | 10/14/2024 |
0.0.14 | 82 | 10/14/2024 |
0.0.13 | 156 | 9/18/2024 |
0.0.12 | 78 | 7/30/2024 |
0.0.11 | 95 | 7/16/2024 |
0.0.10 | 97 | 7/16/2024 |
0.0.9 | 68 | 5/31/2024 |
0.0.8 | 112 | 5/22/2024 |
0.0.7 | 79 | 5/14/2024 |
0.0.6 | 121 | 5/4/2024 |
0.0.5 | 88 | 5/3/2024 |
0.0.4 | 114 | 4/30/2024 |
0.0.3 | 112 | 4/30/2024 |