Versions Compared

Key

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

...

The quickest way to run a test is to enter your API URL into a browser and submit the request. For instance, if your Home URL is https://api.mysite.com and your API URL is /v1, then enter the following into your browser's address bar:

https://api.mysite.com/v1

This should immediately make contact with the OECGI and then OpenEngine. If you are running the Engine Server in the command line you will see an instance of OpenEngine running on the desktop. Otherwise, if you are running the Engine Server as a service, you will probably not see any OpenEngine activity.

The clearest indicator that the SRP HTTP Framework system is running is based on the response you get. It should appear like this:

{
   "URL" : "httphttps://api.contactsmysite.com/v1/",
   "method" : "GET",
   "phrase" : "Unauthorized (RFC 7235)",
   "status" : 401
}

The above response is received because you have attempted to make a request without any authentication. Yet, the response does prove that the API entry point was reached and processed accordingly. So, if you got something like this then congratulations! You are now ready to start building your own RESTful web services.