#
Introduction
- The app server needs to implement the HTTPS callback API for game server authentication and obtaining basic user information.
- sud-mgp-auth-dotnet provides most functions for callback API implementation. The app server only needs to implement the HTTPS API and call sud-mgp-auth-dotnet.
Environment requirements
- net6.0
- Contact Sud.Tech to allocate
appId
,appKey
, andappSecret
for your service.
Integration process
Set nuget and add the source URL.
<?xml version="1.0" encoding="utf-8"?> <configuration> <packageSources> <clear /> <add key="sud-github" value="https://nuget.pkg.github.com/SudTechnology/index.json" /> </packageSources> <packageSourceCredentials> <sud-github> <!-- GitHub user name. We recommend that you create a general company account. --> <add key="Username" value="USERNAME" /> <!-- https://github.com/settings/tokens -> Personal access tokens --> <add key="ClearTextPassword" value="TOKEN" /> </sud-github> </packageSourceCredentials> </configuration>
Reference sud-mgp-auth-dotnet.
<Project Sdk="Microsoft.NET.Sdk.Web"> ... <ItemGroup> <!-- Reference sud-mgp-auth-dotnet --> <PackageReference Include="sud-mgp-auth-dotnet" Version="1.0.0"/> </ItemGroup> </Project>
Use the APIs provided in SudMGPAuth to implement the following callback APIs for game server authentication and obtaining basic user information. For more information, see Demo (TODO:).