Answer the question
In order to leave comments, you need to log in
Who can explain what the rest api is for?
Hello guys, I'm making an android application, there is a news feed, like in VK, I wanted to ask what should be used so that people can share information in real time with a friend for a long time, that is, 1 person added news, another through I updated it for a second and also saw the record, they said I need rest, but I don’t understand the essence, if it’s not hard, Guide me in the right direction, thanks in advance!
Answer the question
In order to leave comments, you need to log in
REST is the principle of building an application when any object can be "reached out" using an http request.
For example, http://somedomain.com/api/users/123/notes/234
a note with id=234 of a user whose id=123 will always be available at the address, for example, in the form of a json object:
{
"authorId": 123,
"content": "Текст заметки под номером 234"
}
You need a back-end developer who will make the "website", and rest is the most convenient way for your application and site to interact.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question