🔑
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
  • Versioning
  • License
  • Important Links
  • Professional Open Source
  • HONOR GOES TO GOD ABOVE ALL

Was this helpful?

Edit on GitHub
Export as PDF

Introduction

Welcome to cbSSO a ColdBox module to help integrate SSO into your application easily.

Bundled in this module are several SSO provider implementations that allow you to quickly and easily integrate with Identity Providers such as Microsoft, Google, GitHub or Facebook using standard protocols like SAML and oAuth.

To install run

box install cbsso

Once installed you can configure your settings like so

// config/modules/cbsso.cfc
component {
    function configure(){
        return {
            "providers": [
                {
                    type: "GoogleProvider@cbsso",
                    clientId: getJavaSystem().getProperty( "GOOGLE_CLIENT_ID" ),
                    clientSecret: getJavaSystem().getProperty( "GOOGLE_CLIENT_SECRET" )
                }
            ]
        };
    }
}

Your app now has the ability to direct users to Google for authentication!

The rest of this documentation will cover topics like

  • Built-in Providers

  • Custom Providers

  • Configuration

  • Accessing User Data

Versioning

<major>.<minor>.<patch>

And constructed with the following guidelines:

  • Breaking backward compatibility bumps the major (and resets the minor and patch)

  • New additions without breaking backward compatibility bumps the minor (and resets the patch)

  • Bug fixes and misc changes bumps the patch

License

Important Links

Professional Open Source

  • Custom Development

  • Professional Support & Mentoring

  • Training

  • Server Tuning

  • Security Hardening

  • Code Reviews

HONOR GOES TO GOD ABOVE ALL

Because of His grace, this project exists. If you don't like this, then don't read it; it's not for you.

"Therefore being justified by faith, we have peace with God through our Lord Jesus Christ: By whom also we have access by faith into this grace wherein we stand, and rejoice in hope of the glory of God." Romans 5:5

NextQuick Start

Last updated 9 months ago

Was this helpful?

The cbSSO module is maintained under the guidelines as much as possible. Releases will be numbered in the following format:

Apache 2 License: ​

Code:

Issues:

Ortus Solutions, Corp

The cbSSO module is a professional open-source software backed by offering services like:

Semantic Versioning
http://www.apache.org/licenses/LICENSE-2.0
https://github.com/coldbox-modules/cbsso
https://github.com/coldbox-modules/cbsso/issues
Ortus Solutions, Corp
Much More