googauth

This command line tool was created out of necessity since I could not get Google's oauth2l to compile.

It tries to solve the problem of getting a Google user's access or id token on the command line.

Pull requests are welcome.

Features

How to use

Help

Using the help section of the program should get you started.

./googauth help

Every required command parameter can be provided using a long form ./googauth --long "mylong", a short form ./googauth -s "myshort", as well as an environment variable ENV="myenv" ./googauth [...].

Login

Use the login command with a profile name and parameter values for all the required parameters.

./googauth login myprofile \ --scopes "scope1,scope2,scope3" \ --id "my_client_id" \ --secret "my_client_secret"

At this point your default browser should start and you can login to your Google account.

If the browser doesn't start, you can use the URL that is printed to the terminal.

Access token

``` ./googauth accesstoken myprofile

```

ID Token

``` ./googauth idtoken myprofile

```

License

MIT