facebook twitter hatena line email

Flutter/HttpRequest

提供: 初心者エンジニアの簡易メモ
2019年12月21日 (土) 01:09時点におけるAdmin (トーク | 投稿記録)による版

移動: 案内検索

httpリクエストサンプル

import 'package:http/http.dart' as http;
String _targetUrl = "ttps://example.com/api/hoge?id=10";
String response_body = await http.read(_targetUrl);

urlエンコード

"ttp://example.com/api/hoge?body=" + Uri.encodeComponent("本文1")