aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorLeandro Alves <leandroalves@yahooinc.com>2021-11-29 11:39:46 +0100
committerLeandro Alves <leandroalves@yahooinc.com>2021-11-29 11:39:46 +0100
commitada7b67ff5fd899a2b437f6dd56dbe0ecce75996 (patch)
tree490abf9281b3a3eb9d9742a659ade3aed0bdc3a4 /client
parentf4d8d595e66ec8fb4589e65515b3042b152b2d60 (diff)
print verification url
Diffstat (limited to 'client')
-rw-r--r--client/go/auth0/auth0.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/client/go/auth0/auth0.go b/client/go/auth0/auth0.go
index c09f2d4a515..5acd4354274 100644
--- a/client/go/auth0/auth0.go
+++ b/client/go/auth0/auth0.go
@@ -361,6 +361,10 @@ func RunLogin(ctx context.Context, a *Auth0, expired bool) (*System, error) {
}
fmt.Printf("Your Device Confirmation code is: %s\n\n", state.UserCode)
+
+ fmt.Println("If you prefer, you can open the URL directly for verification")
+ fmt.Printf("Your Verification URL: %s\n\n", state.VerificationURI)
+
fmt.Println("Press Enter to open the browser to log in or ^C to quit...")
fmt.Scanln()