I'm trying to develop a basic server that supports...
# general
b
I'm trying to develop a basic server that supports social sign-in (with Microsoft Entra as the identity provider). However, when attempting to test locally with the proxy server, I run into the the following error:
Copy code
Command:
> ory proxy localhost:3000

Error:
> http: proxy error: unsupported protocol scheme "localhost"
My hunch is that social sign-in is not supported on localhost. Correct? Has anyone else validated this?
s
try
ory proxy <http://localhost:3000>
b
Oh right 😄, obvious typo, I forgot the "http://". Thanks!
s
np 😉