By Magestik
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!
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.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.