...
How to generate a new API Key?
Clone the code for Dev from the following Repo: …Link APSR Repo
Go to the following Page and on line number … 53 in ProjectController.cs
add the following code
//var x = System.Guid.NewGuid();
// Console.WriteLine(x);
you would need to put a breakpoint and run the app locally in order to note the new API Key when it reaches the code.
3. Make sure to note the new GUID number that was displayed since you only have one time, else it will be a new number every time you run this lines.
...