You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a flow without a redirectUri specified the default redirectUri is set to http://localhost (which implies port 80). However binding a program to port 80 is by default not possible on Linux systems when running as non-root. This results in the following error: SocketException: Failed to create server socket (OS Error: Permission denied, errno = 13), address = 0.0.0.0, port = 80
Running my dart program as root should not be necessary and is not recommended.
Changing the default redirectUri to http://localhost:8081 for example fixed my permission denied error.
The text was updated successfully, but these errors were encountered:
timalenustmf
added a commit
to timalenustmf/openid_client
that referenced
this issue
Aug 8, 2024
When creating a flow without a
redirectUri
specified the defaultredirectUri
is set to http://localhost (which implies port 80). However binding a program to port 80 is by default not possible on Linux systems when running as non-root. This results in the following error:SocketException: Failed to create server socket (OS Error: Permission denied, errno = 13), address = 0.0.0.0, port = 80
Running my dart program as root should not be necessary and is not recommended.
Changing the default redirectUri to http://localhost:8081 for example fixed my permission denied error.
The text was updated successfully, but these errors were encountered: