Converti i comandi CURL in codice Dart online

Curl command

Examples: GET - POST - JSON - Basic Auth - Files - Form

CURL a Dart online

Questo strumento ti aiuta a generare codice Dart basato sul comando CURL. Copia e incolla il comando CURL e genera Dart.

Cosa puoi fare con CURL to Dart Converter Online?

  • CURL to Dart è uno strumento davvero unico per convertire il comando cURL in richiesta http di Dart. L'input fornito dal comando cURL dell'utente per generare il codice Dart.
  • Questo strumento ti fa risparmiare tempo e aiuta a generare facilmente il codice Dart.
  • CURL to Dart funziona bene su Windows, MAC, Linux, Chrome, Firefox, Edge e Safari.

cos'è il CURL?

cURL è uno strumento da riga di comando open source che scarica file dal Web. Supporta una varietà di protocolli, inclusi HTTP, HTTPS, FTP, SFTP, TFTP, Gopher e altri.

Come convertire CURL in codice Dart? 

Passaggio 1: incolla e converti le tue richieste CURL in codice Dart.
Passaggio 2: copia il codice Dart

Converti CURL in Dart Esempio

ARRICCIARE
cURL example.com
Codice Dart
import 'package:http/http.dart' as http;

void main() async {
  var url = Uri.parse('http://example.com');
  var res = await http.get(url);
  if (res.statusCode != 200) throw Exception('http.get error: statusCode= ${res.statusCode}');
  print(res.body);
}