Created
November 17, 2020 03:33
-
-
Save ajtatum/ec26f3e052321246416b7e1e88f2e483 to your computer and use it in GitHub Desktop.
Creating a new user with API Auth Key
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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