Report this

What is the reason for this report?

[SPACES] Access files through http protocol to feed my Mobile App.

Posted on August 22, 2018

Flutter - DartLang programming language, How to Access my files through http protocol to feed my Mobile App? I turn my files private.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi Magestik.

It has been a long time, I suppose you have already solved your problem, I also leave an answer here in case someone else arrives with the same question.

In Flutter, it is possible to access content through the HTTP protocol using the package http.

The easiest way to use this library is via the top-level functions.

For example:

import 'package:http/http.dart' as http;

var url = 'https://example.com/whatsit/create';
var response = await http.post(url, body: {'name': 'doodle', 'color': 'blue'});
print('Response status: ${response.statusCode}');
print('Response body: ${response.body}');

print(await http.read('https://example.com/foobar.txt'));

You can get more information in the package documentation http.

With this package it is possible to obtain data in various formats, for example in JSON format and it is also possible to obtain files such as images, etc.

Greetings.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.