Skip to content

Instantly share code, notes, and snippets.

@ajtatum
Created November 17, 2020 03:33
Show Gist options
  • Save ajtatum/ec26f3e052321246416b7e1e88f2e483 to your computer and use it in GitHub Desktop.
Save ajtatum/ec26f3e052321246416b7e1e88f2e483 to your computer and use it in GitHub Desktop.
Creating a new user with API Auth Key
var apiAuthKey = Guid.NewGuid().ToString("N");
var user = new ApplicationUser
{
ApiAuthKey = apiAuthKey,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment