#github #devices #flow #refresh-token #access-token #oauth #cli

bin+lib github-device-flow

Binary and library for performing the GitHub Device Flow

6 releases

0.2.0 Jan 26, 2024
0.1.4 Jun 16, 2023
0.1.3 Sep 2, 2022
0.1.2 Aug 19, 2022

#188 in Authentication

Download history 14/week @ 2024-01-26 5/week @ 2024-02-02 260/week @ 2024-02-09 886/week @ 2024-02-16 713/week @ 2024-02-23 600/week @ 2024-03-01 635/week @ 2024-03-08 694/week @ 2024-03-15 902/week @ 2024-03-22 931/week @ 2024-03-29 514/week @ 2024-04-05

3,112 downloads per month

MIT license

17KB
306 lines

gh-device-flow

Crate that implements the GitHub Device Flow for authenticating with GitHub Apps.

It also implements the refresh mechanism for GitHub Apps that use GitHub's token expiration feature.

Usage

To use the CLI, download the binary for your architecture/OS from the latest release.

Once extracted, execute the command providing the Client ID for your App:

github-device-flow --client-id Iv1.8675309ABCDEFGH

This will prompt you to open a browser window and provide the generated device code. Once completed, your access token will be printed to STDOUT as a JSON object. If your App requests refresh tokens one will also be printed.

To refresh your OAuth Access using a Refresh Token, pass it as a --refresh flag:

github-device-flow --client-id Iv1.8675309ABCDEFGH --refresh thisisnotarefreshtoken

To view the full help, pass the --help flag:

$ github-device-flow --help
github-device-flow 0.1.2
Binary and library for performing the GitHub Device Flow

USAGE:
    github-device-flow [OPTIONS] --client-id <CLIENT_ID>

OPTIONS:
    -c, --client-id <CLIENT_ID>    Client ID
    -h, --host <HOST>              The host to authenticate with
        --help                     Print help information
    -r, --refresh <REFRESH>        A Refresh Token to exchange
    -V, --version                  Print version information

Dependencies

~7–22MB
~313K SLoC