I have created my website using Java Enterprise Edition (JSP/Servlets) and MySql 8 for my database. It is a typical CRUD application with a feature that let the user track the car's location. I thought of using Flutter since it will save me time with its cross-platform capabilities but I have'nt found any documentations that will make the user login from the app to my website and fetch some data. I'm pretty sure it is possible somehow. Otherwise is there a way to simulate my website as fast as possible without using Chrome obviously.
Asked
Active
Viewed 691 times
3
-
Use : https://flutter.dev/docs/cookbook/networking/send-data to send and https://flutter.dev/docs/cookbook/networking/fetch-data to fetch data from your CRUD application. – Mike Aug 29 '20 at 19:03
1 Answers
1
Read the concept of Rest APis.Simply use the api to fetch data and you can also save data through api.You need to Connect your app to your web APi.

Programmer_3
- 522
- 5
- 18
-
-
yes you need to consider best practices for api security for more details read this comprehensive article https://www.redhat.com/en/topics/security/api-security – Programmer_3 Aug 29 '20 at 21:57