I think that I might have misunderstood something. I created Django Rest Framework app. I have working api with tokens, query_params etc.
Everything is working if I make a curl like that:
curl -X "GET" http://localhost:8000/api/results
-H "Content-Type: application/json"
-H "Authorization: Token eeea084811d9213aa3803946e4464758d66966bc"
--data 'make=test'
It is actually returning proper records. But often, on other websites I see that they are implementing their api for users in this format:
http://www.example.com/?apikey=[yourkey]&
I tried to look up converting curl to http but I didn't find anything useful for me and now I am confused. Maybe my api works only with curl currently? Maybe this "http call" needs to be somehow implemented/coded additionally?
I suspect that this question is stupid but I don't know yet proper keywords to google it unfortunately.