From 5c1da4a9042dd150ccc1cdc5a74309f6829928d5 Mon Sep 17 00:00:00 2001 From: idanoo Date: Mon, 30 Jan 2023 12:05:30 +1300 Subject: [PATCH] Log ID/Secret --- internal/gomastodonstats/mastodon.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/gomastodonstats/mastodon.go b/internal/gomastodonstats/mastodon.go index 5944157..c7de9ea 100644 --- a/internal/gomastodonstats/mastodon.go +++ b/internal/gomastodonstats/mastodon.go @@ -18,6 +18,10 @@ func registerApp() (string, string, error) { if err != nil { return "", "", err } + + fmt.Printf("client-id : %s\n", app.ClientID) + fmt.Printf("client-secret: %s\n", app.ClientSecret) + return app.ClientID, app.ClientSecret, nil }