Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.49 KB

File metadata and controls

34 lines (26 loc) · 1.49 KB

Prepare OAuth credentials

This application uses GitHub OAuth Device Flow. You must independently get a client ID from an OAuth app in your account.

  1. Set some values on your OAuth app settings:

    image

    Name Value Required
    Application name FluentHub True
    Homepage URL https://github.com/FluentHub/FluentHub True
    Application description A fluent GitHub app for Windows False
    Authorization callback URL http://127.0.0.1 True
    Application logo Use this True
    Badge background color #FFFFFF True (whatever)
  2. Enable Device Flow in the OAuth app settings.

  3. Create a file named AppCredentials.config in the root of your FluentHub repo with Solution Explorer

  4. Change the id node value. The secret node can be empty because Device Flow does not use the client secret.

      <?xml version="1.0" encoding="utf-8" ?>
      <configuration>
          <client>
              <type key="id" value="YOUR-APP-ID"/>
              <type key="secret" value=""/>
          </client>
      </configuration>

    image

    image