Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

345
Views
error 111 Flutter VS Laravel 8

Actualmente estoy trabajando en un proyecto en el que me quedé atascado al conectar Laravel 8 con Flutter. Cuando ejecuto la API normal dentro de Postman, todo funciona perfectamente una vez que lo pruebo dentro de Flutter, obtuve el siguiente error.

 Unhandled Exception: SocketException: OS Error: Connection refused, errno = 111, address = [IP Address Server], port = 43798

No entiendo, el código está bien. Cuando llamo a la API dentro de otro proyecto de laravel, funciona perfectamente, solo cuando lo llamo en Flutter, aparece este error.

Qué puede ser. No lo ejecutamos localmente, es servidor -> flutter

Código de aleteo:

 Future<User> getUser(url) async { print("here"); var params = { "id": "01142", }; Uri uri = Uri.parse(url); uri.replace(queryParameters: params); final response = await http.get( uri, headers: <String, String>{ 'Content-Type': 'application/json', 'Accept': "*/*", 'connection': 'keep-alive', 'Accept-Encoding': 'gzip, deflate, br', 'host': 'ipv4', }, ); if (response.statusCode == 200) { // If the server did return a 200 OK response, // then parse the JSON. user = User.fromJson(jsonDecode(response.body)); print("NEW USER"); print(user); return user; } else { // If the server did not return a 200 OK response, // then throw an exception. throw Exception('Failed to load user'); } }
over 4 years ago · Santiago Trujillo
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!