🔑
cbSSO
  • Introduction
  • Quick Start
  • Usage
    • How It Works
    • Configuration
    • Initiating SSO
    • Handling The Identity Provider Response
    • Interception Points
    • Provider Service
  • Providers
    • Built-in Providers
      • FacebookProvider
      • GitHubProvider
      • GoogleProvider
      • MircosoftSAMLProvider
    • Custom Providers
  • cbAuth Integration
    • Enabling Integration
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
Export as PDF
  1. Providers
  2. Built-in Providers

GitHubProvider

PreviousFacebookProviderNextGoogleProvider

Last updated 10 months ago

Was this helpful?

The GitHubProvider can be configured to interact with Github. You can find their documentation here

component {
  public any function configure(){
    return {
      "providers" : [
        {
          // name is optional, can be used to control the redirect uri
          // with name:     https://your.app.com/cbsso/auth/g
          // without name:  https://your.app.com/cbsso/auth/GitHub
          name:         "g",
          type:         "GitHubProvider@cbsso",

          // these values are configured with Microsoft and available in your app dashboard
          clientId:     "YOUR-CLIENT-ID",
          clientSecret: "YOUR-CLIENT-SECRET",
          
          // optional - this is the default
          scope: "user user:email"
        }
      ]
    };  
  }
}
https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/authorizing-oauth-apps#web-application-flow