Get and post data in flutter with API from Laravel [duplicate] - laravel

This question already has answers here:
Laravel 5.1 API Enable Cors
(9 answers)
Closed last month.
Can anyone show me how to get and post data with API in flutter? I have tried some flutter API tutorials with Laravel but when I print the value is error cors, something wrong with my flutter code or my API? or there are some settings in laravel when i create API?
create CRUD in Flutter using API from laravel

I think You are having CORS issue from your mobile app. From the backend (laravel) you need to allow the request from your specific IP or even you can allow for all the domains. Please refer to this link on how to enable CORS on laravel. https://www.stackhawk.com/blog/laravel-cors/

Related

Custom Laravel Registration Email

I have built an authentication system on laravel using Fortify, sadly the email templates is kinda boring so I want to change them. but I couldn't find where the template is located in their documentation. I would love to get some help.
Fortify is using the default Laravel Notifications template that you can easily overwrite using your own Notifications.
Here is a clear and well explained video tutorial on How to Translate/Customize Laravel Auth Default Emails

can insert update and delete data in laravel api using React native(Android) is it possible?

i known this question is very Strange but do what I didn't get an answer anywhere So that's it I asked this question Thought it necessary to ask !! can insert update and delete data in laravel api using React native is it possible ? I have a website In which i used the larval api That's why I question I am asking !
If you able to make request with API like update the user data and if you have implemented that in your API then you can for sure edit data and delete them using API request. I suggest using requests in your React native Application.
Yes can do this easily first make database in MySQL, second is create insert Update query in larval and make it controller in larval and using axios lib in react native to create post and get method.

Lonic 3 with laravel backend

So, I am going to create an ionic 3 project that use my existing laravel backend. My laravel project is on heroku (for now) and it is already setup with laravel passport and API based in mind, since I already created frontend for laravel with SPA vuejs and already configured cors too.
So I supposed it shouldn't be any problem from my backend to communicated with client side. But I am not very experienced with ionic 3, and the problem is I can't find any one talking straight forward about how to implement basic authentication with laravel passport to ionic 3 and also the basic http request like post, get, delete, and put/patch.
Most of the tutorials are about working with firebase, and me myself is not very familiar with firebase and not willing to invest time to those since all my backend needs are already satisfied with laravel. I also found 1 or 2 site talking about laravel and ionic but i think it is from very different version of ionic since the file structure and the way he working is very different from what I've known (beside those article already 1-2 years old now)
So maybe anyone that have a tutorial about all this thing can share it to me?

Working with Googles API's in front end or backend?

I just started to work with Google API's (Calendar and Gmail for now). I already got both examples working on both my Frontend (React) and my Backend (Java - Spring).
I have the following doubt, If I want to enable users to be able to send email's using the oficial API not javax.mail should that be done on the Backend or it can be done on Frontend? Since the official documentation only shows examples on Java and Python.
If the answer is on Backend how will users be able to authenticate via OAuth2 If they are "not supposed" to see server-side information.
Thanks
Ok for does looking for an answer. I found the following guide...
https://developers.google.com/identity/sign-in/web/server-side-flow#step_1_create_a_client_id_and_client_secret
Basically you can get a client-side one time access code which is send to server-side where it can get a long-live access_token in order to have offline access once correct authentication has happened.

Consuming Laravel Passport API with javascript (React + Axios) from another application

I have managed to make run Laravel 5.4 and implemented the API Authentication (Passport).
What I would try to achieve is to make this as my API server and build React applications that would interact on this API.
Does this mean I have to make routes on routes\api.php?
Let's say I have a React app name requestform on development and running on http://127.0.0.1:8080. How will I consume an api route with axios or jquery?
I can't seem to make the correct keyword to search on google and all the samples I can get are the ones that the API and the javascript application is on the same domain.
This post may have been answered by now. But if not then...
I think you are in the right track..
Does this mean I have to make routes on routes\api.php?
Yes. Your API routes will depend on this file.
Let's say I have a React app name requestform on development and running on http://127.0.0.1:8080. How will I consume an api route with axios or jquery?
Make sure your API Server is running, say it's on http://server.dev, you can consume the API in another app by http://server.dev/api/[your-routes].
I can't seem to make the correct keyword to search on google and all the samples I can get are the ones that the API and the javascript application is on the same domain.
This is a matter of what front-end programming you know. You can use any javascript knowledge to consume your own API with the same domain. There is already a Vue integration packaged in Laravel 5.4+ or just plain vanilla javascript or jQuery.

Resources