このエラーを受け取りました
Unhandled Exception: SocketException: OS Error: No route to Host,
errno = 113, address = (my url api), port = 42392
このコードでそれにアクセスしようとしている間:
final String basicAuth = 'Basic ' + base64Encode(utf8.encode('$authUsername:$authPassword'));
final String _grantType = "password";
http.Response response = await http.post(
Uri.encodeFull("this is my url api"),
headers: <String, String>{
"authorization": basicAuth,
'content-type': 'application/x-www-form-urlencoded',
},
body: {
"username": username,
"password": password,
"grant_type": _grantType,
},
);
ポストマンを使用してURLを試し、完全に機能しましたが、正しく記述できましたか?承認の基本認証コードを配置するかどうかわからない
解決しました!!!!
外部デバイスからAPIにアクセスしたいので、ローカルホストと同じネットワークにいる必要がある場合は、このリンクをクリックして、ローカルホストへの接続を支援します。
Androidデバイス? = [
Xammp-> Network-> enable;
これがお役に立てば幸いです。