Hi, I have been trying to implement Sign-in with G...
# compose-desktop
a
Hi, I have been trying to implement Sign-in with Google auth menu for a compose desktop app, but not able to find any example/docs in regards to this. Would of great help, if you could provide some insights.
o
I managed this by spawning a short lived http server to answer to GCP OAuth app callback URL (defined to localhost:someport)
(
UriHandler
is used to delegate part of the flow to the browser)
a
Thanks!