Sending mobile information to the web

-1

Good morning, my dear ones!

I want to collect some data and send some information from Mobile (Android) to a WEB site that I'm developing with (Python + Django). But I do not know the name of this process of sending the cell phone. What is the name of sending data from my mobile to my website? That I can do a search on the internet and get to do ..

So the question is .. "What is the name of the process that sends the data collected by the cell to a web site?"

Thank you.

    
asked by anonymous 06.09.2018 / 15:27

1 answer

1

You are going to make an HTTP Request - more specifically, usually using one of the "POST, PUT or PATCH" methods to modify data or "GET" just to retrieve data. Then in some documents "HTTP POST Request" may be abbreviated to "POST".

In other places you can find the word "query" to shorten even more ("I will query the server").

If your android app is in Javascript or some similar technology, this type of request may also be documented as "ajax" or "asynchronous request".

    
06.09.2018 / 15:43