Can I connect two apps into one server.......Like one is for entering datas and the other one is for performing operation? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

 Can I connect two apps into one server.......Like one is for entering datas and the other one is for performing operation?

About android studio

5th Apr 2020, 6:09 AM
Riisi Pator
Riisi Pator - avatar
5 Answers
+ 5
Your server is the back-end. Your app is the front-end. Your app contacts your server by making API requests. Entering data app: In this app make the interface for entering the data, and submitting the data to the server by a POST API request. In the server take the data and save it to the database Performing Operation App: In this make the interface for other CRUD operation and let them talk to the same server using other API routes for requests. In the server corresponding to each route perform the operations
5th Apr 2020, 7:59 AM
Ashutosh Agrawal
Ashutosh Agrawal - avatar
+ 7
Riisi Pator you are welcome. Feel free to direct message me anytime regarding such problems 😄😉.
5th Apr 2020, 2:31 PM
Ashutosh Agrawal
Ashutosh Agrawal - avatar
+ 2
Yes of course you can, you just need to make 2 different apps that make request to same server and database.
5th Apr 2020, 6:30 AM
Raj Chhatrala
Raj Chhatrala - avatar
0
How???....can you just please elaborate a bit.... you'll be thankful
5th Apr 2020, 6:44 AM
Riisi Pator
Riisi Pator - avatar
0
Thanks Ashutosh.... your answer to my question was very helpful ❤️
5th Apr 2020, 8:11 AM
Riisi Pator
Riisi Pator - avatar