Home > Mobile >  What is the advantage of using a GET http method to update values as opposed to POST http method?
What is the advantage of using a GET http method to update values as opposed to POST http method?

Time:10-11

I was reading up on how to create a telegram bot and I see that to set a web hook you use the GET http method. I assume that your link will be stored somewhere on telegram servers.

So now my question is: Why not use the POST http method? What is the advantage of this design of using GET http method in this case rather than POST http method for something that pushes data?

CodePudding user response:

Bot API supports GET and POST HTTP methods both. It's up to you what to use. (See this or this). I think it makes the API easy and fast to get started with.

For the sake of simplicity one might choose a simple GET request to set a webhook - Put together a Url with some parameters and call it in a web browser, done! Webhook is now set.

Still it is possible to do the same with a POST request (and you can argue it is the preferred way to do so). But it would need tools like Postman, CURL or some browser extensions.

  • Related