[flutter] macos(desktop)でhttpパッケージを使用する時エラーです
エラーメッセージ
[ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: ClientException with SocketException: Connection failed (OS Error: Operation not permitted, errno = 1), address = api.openai.com, port = 443,
ここで行った方法
ここのファイルに
macos/Runner/DebugProfile.entitlements
以下の内容を追加してください。
<key>com.apple.security.network.client</key>
<true/>
そしてここの場合、macos(desktop)からfirebaseとの接続時にも役に立ちました。
コメント