Let's say I have an address for an API like this:
mywebsite.com/api/mydata
If accessed, a JSON will appear like this:
[
{
"id":"1",
"name":"John"
},
{
"id":"2",
"name":"Smith"
}
]
The result defaults will be displaying the entire data if a post has no parameters. If you use post "ID" and the ID parameter value is one of the existing data in the API, it will only display objects from the data selected based on the ID. The API can be accessed by anyone. API needs to be accessed using token parameters to secure the data.
Let's say I add a token parameter to be able to access data like this:
yourtoken="yourtoken"
if (post_param[token]==yourtoken) {
// Displaying JSON
}
so if you want to open the API, you need to add a token parameter.
Is simple security like this worth using? what vulnerabilities will arise if I use this? is there a better way than this?