2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Flluterでネットからデータを取得できない

Posted at

Flutterプロジェクトで、ネットにある画像を取得するコードを書き、macOSで実行しようとしたら次のエラーが出ました。
[ERROR:flutter/lib/ui/ui_dart_state.cc(177)] Unhandled Exception: SocketException: Connection failed (OS Error: Operation not permitted, errno = 1), address = jsonplaceholder.typicode.com, port = 443
エラー内容を調べてみるとstack overflowに英語で解決方法が書かれていましたので、こちらにメモします。ファイル内容を変更する必要があり、プロジェクト名/macos/Runner/DebugProfile.entitlementsプロジェクト名/macos/Runner/Release.entitlementsの2つです。そちらに次のコードを足します。

<key>com.apple.security.network.client</key>
<true/>

記述しましたら、アプリを再起動して、実行します。
うまく画像取得できました◎。

参考

2
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?