Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

How to generate a new API Key?

  1. Clone the code for Dev from the following Repo: …Link APSR Repo

  2. Go to the following Page and on line number 53 in ProjectController.cs

    Image Added

    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.

...