We going to develop a little API application in Sinatra. What are the authentication options available to secure the API calls?
Thanks, Imran
|
We going to develop a little API application in Sinatra. What are the authentication options available to secure the API calls? Thanks, Imran |
|||
|
|
|
Sinatra has no built-in authentication support. There are some gems available, but most are designed for user authentication (i.e. for a website). For an API, they seem like overkill. It’s easy enough to make your own. Simply check the request params in each of your routes to see if they contain a valid API key, and if not, return a 401 error.
Nothing after the call to Of course, it’s not ideal to repeat the check at the beginning of each route. Instead, you can create a small extension that adds conditions to your routes:
If you just want authentication on all your routes, use a
|
|||||
|