Downloads | 56 |
---|---|
Updated | 2 years ago |
Released | 2 years ago |
Created | 3 years ago |
Numeric ID | 201 |
Example plugin for the Auth API.
The source code is on Github, as well as the source code for the server.
The following is the most basic example for getting a token to validate with the Openplanet.dev backend API.
// Start the task to get the token from Openplanet
auto tokenTask = Auth::GetToken();
// Wait until the task has finished
while (!tokenTask.Finished()) {
yield();
}
// Get the token
string token = tokenTask.Token();
// Send the token to our server
// ...