There is a RESTful API on Node.js that works with a json file. The essence of the problem is that it does not work to write the simplest android client (previously it did not work with Java and in the android studio for the first time), which could work with my server's api, or rather change this very json file:
[{"id":1,"name":"Tom","password":24},{"id":2,"name":"Bob","password":27},{"id":3,"name":"Alice","password":"23"}]. I also read about gson and valley and httpurlconnection, but in the end it’s impossible even to just connect to the server, there’s no idea how to do it correctly.
Please help with writing code, links to useful articles, or just advice.
Ps The server-client experience is only from Qt, with sockets it was somehow simpler there ....