Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.44 KB

credentials.md

File metadata and controls

33 lines (25 loc) · 1.44 KB

Prepare OAuth credentials

This application uses Oauth, so you must independently get a client ID and secret in your account. This is because it uses something similar to a password and cannot be disclosed.

  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 fluenthub://auth True
    Application logo Use this True
    Badge background color #FFFFFF True (whatever)
  2. Create a file named AppCredentials.config in the root of your FluentHub repo with Solution Explorer

  3. Change id and secret node value

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

    image

    image