-
|
I've installed opkssh into the dev container I use, and I can invoke it: I get redirected to the authentication provider just as I do from outside of the container upon clicking that link, but once the provider redirects to http://localhost:3000/login-callback, the page simply says vscode is forwarding port 3000 from the container to localhost, which I suspect is the issue here. As a workaround, I found that I can |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
|
@sdwilsh Are you opening the link in a browser inside the container or in a browser output the container?
Try to disable vscode from forwarding port 3000 and see if that resolves your problem. Or alternatively run That is, change ...
access_type: offline
prompt: consent
redirect_uris:
- http://localhost:3000/login-callback
- http://localhost:10001/login-callback
- http://localhost:11110/login-callbackto ...
access_type: offline
prompt: consent
redirect_uris:
- http://localhost:10001/login-callback
- http://localhost:11110/login-callbackDid that fix your issue? |
Beta Was this translation helpful? Give feedback.
-
|
@sdwilsh Are you still stuck? Let me know, I'm happy to jump on a call and get you unstuck. |
Beta Was this translation helpful? Give feedback.
After looking at this probably AI-generated site that suggested the issue might be
localhost, I modified the url I was redirected to to127.0.0.1, and the error went away. The ssh key and cert were also created in the container (I haven't had a test to verify that I can ssh to something yet).