I'm making an app where I want to store data the users input on a google spreadsheet. I have tried Secure HTTP Post in Android already and the first answer does not work when I put it in android studio. Does anyone know another way to send data from an app to the spreadsheet?
Asked
Active
Viewed 988 times
1 Answers
0
use retrofit http://square.github.io/retrofit/
Setup a post method like this
@POST("users/data")
Call<Data> storeData(@Body Data data);
Then make the post call by calling the method with correct data.
All http methods are implemented in similar fashion. Refer docs for detailed information about how to use retrofit.

user3215142
- 326
- 2
- 6