AdamVig / GoCoApi

API Server for the GoCoStudent app.
https://gocostudent.adamvig.com/api
GNU General Public License v3.0
0 stars 0 forks source link

Remove unnecessary authentication from endpoints #9

Closed AdamVig closed 8 years ago

AdamVig commented 8 years ago

Some endpoints do not use authentication internally, so there is no need for the app to send it to them.

Without any sensitive data sent in the request, it then makes more sense for these endpoints to use GET instead of POST (see README.md for an explanation of this measure of security through obscurity).

AdamVig commented 8 years ago

Resolves #2.