Authing DocsDocuments
Concept
Guides
Development Integration
Application integration
Concept
Guides
Development Integration
Application integration
Old Version
Development Integration
  • Single Sign-On (SSO)
  • Login component

  • JavaScript/Node.js

  • Java / Kotlin

  • Python

  • C#

  • PHP

  • Go

  • Ruby
  • Android

  • iOS

  • Flutter

  • React Native
  • WeChat Mini Program
  • WeChat webpage authorization
  • Framework Integration
  • Error code
  1. Development Integration
  2. /
  3. C#

¶ Authing - C

Update Time: 2022-07-08 19:54:21
Edit

The Authing Python SDK is comprised of two parts: ManagementClient and AuthenticationClient. All operations in ManagementClient are performed as an administrator, including managing users, managing roles, managing authority policies, and managing user pool configuration. All operations in AuthenticationClient are performed as the current terminal user, including login, registration, modification of user information, and logout.

You should set the initialized ManagementClient instance to a global variable (initialize only once), and the AuthenticationClient should be initialized for each request.

¶ Installation

Install via Nuget:

Install-Package Authing.Library

¶ Use ManagementClient

Initialization of ManagementClient requires userPoolId and secret:

You can learn how to get UserPoolId and Secret here.

using Authing.ApiClient.Domain.Client.Impl.ManagementBaseClient;

var managementClient = new ManagementClient("AUTHING_USERPOOL_ID", "AUTHING_USERPOOL_SECRET");

Now the managementClient() instance is ready to be used. For example, you can get the list of users in the user pool:

var managementClient = new ManagementClient("AUTHING_USERPOOL_ID", "AUTHING_USERPOOL_SECRET");
var data = await managementClient.Users.List();

¶ Use AuthenticationClient

Initialization of AuthenticationClient requires AppId:

You can view your own application list in the application of the console.

using Authing.ApiClient.Domain.Client.Impl.AuthenticationClient;

var authenticationClient = new AuthenticationClient(opt =>
            {
                opt.AppId = "AUTHING_APP_ID";
            });

Then, you can perform operations such as registration and login:

var username = GetRandomString(10);
var password = GetRandomString(10);
var user = await authenticationClient.LoginByUsername(
    username,
    password,
)

After login,update_profile and the other methods that require users to log in are available:

await authenticationClient.UpdateProfile(new UpdateUserInput() {
  Nickname = "Nick",
})

You can also set the AccessToken parameter after initialization, so that it is unnecessary to call the the LoginByXXX method every time:

using Authing.ApiClient.Domain.Client.Impl.AuthenticationClient;

var authenticationClient = new AuthenticationClient(opt =>
            {
                opt.AppId = "AUTHING_APP_ID";
            });
authenticationClient.Token = "ID_TOKEN";

Executing the UpdateProfile method can also succeed:

await authenticationClient.UpdateProfile(new UpdateUserInput() {
  Nickname = "Nick",
})

¶ Privatization deployment

The privatization deployment scenario needs to specify the GraphQL endpoint of your privatized Authing service (without protocol header and Path). If you are not sure, you can contact the Authing IDaaS service administrator.

¶ Interface index

Available Authentication methods

  • Get the user profile of the current user: getCurrentUser
  • Register with email: registerByEmail
  • Register with username: registerByUsername
  • Register with mobile phone number verification code: registerByPhoneCode
  • Login with email: loginByEmail
  • Login with username: loginByUsername
  • Login with SMS code: loginByPhoneCode
  • Login with mobile phone number password: loginByPhonePassword
  • Send mail: sendEmail
  • Send SMS verification code: sendSmsCode
  • Check the valid status of the token: checkLoginStatus
  • Use the phone number verification code to reset the password: resetPasswordByPhoneCode
  • Use email verification code to reset password: resetPasswordByEmailCode
  • Update user profile: updateProfile
  • Update password: updatePassword
  • Update phone number: updatePhone
  • Update email: updateEmail
  • Refresh token: refreshToken
  • Bind mobile phone number: bindPhone
  • Unbind phone number: unbindPhone

Learn more:

AuthenticationClient

ManagementClient contains the following sub-modules:

UsersManagementClientRolesManagementClientPoliciesManagementClientAclManagementClientGroupsManagementClientUdfManagementClienUserPoolManagementClientWhitelist Management

¶ Get help

Join us on forum: #authing-chat (opens new window)

Prev: Management registration white list Next: User Authentication Module
  • Installation
  • Use ManagementClient
  • Use AuthenticationClient
  • Privatization deployment
  • Interface index
  • Get help

User identity management

Integrated third-party login
Mobile phone number flash check (opens new window)
Universal login form component
Custom authentication process

Enterprise internal management

Single Sign On
Multi-factor Authentication
Authority Management

Developers

Development Document
Framework Integration
Blog (opens new window)
GitHub (opens new window)
Community User Center (opens new window)

Company

400 888 2106
sales@authing.cn
16 / F, Block B, NORTH STAR CENTURY CENTER, Beijing(Total)
room 406, 4th floor, zone B, building 1, No. 200, Tianfu Fifth Street, Chengdu(branch)

Beijing ICP No.19051205-1

© Beijing Steamory Technology Co.