# Built-in Providers

Out of the box we have implemented the following providers for your use.

* [FacebookProvider](https://app.gitbook.com/o/-LA-UVKtPMvMR4t5JRTB/s/bhpL1furbue2wKeid2C7/~/changes/3/providers/built-in-providers/facebookprovider)
* [GitHubProvider](https://app.gitbook.com/o/-LA-UVKtPMvMR4t5JRTB/s/bhpL1furbue2wKeid2C7/~/changes/3/providers/built-in-providers/githubprovider)
* [GoogleProvider](https://app.gitbook.com/o/-LA-UVKtPMvMR4t5JRTB/s/bhpL1furbue2wKeid2C7/~/changes/3/providers/built-in-providers/githubprovider)
* [MicrosoftSAMLProvider](https://app.gitbook.com/o/-LA-UVKtPMvMR4t5JRTB/s/bhpL1furbue2wKeid2C7/~/changes/3/providers/built-in-providers/mircosoftsamlprovider)

Each provider implements the `cbsso.models.ISSOIntegrationProvider` interface and provides the necessary functionality to interact with a specific identity provider.

This interface is primarily for use by the `ProviderService@cbsso` and is not necessarily intended for direct use but is available if you need it.

```cfscript
interface {
    public string function getName();
    public string function startAuthenticationWorflow( required any event );
    public any function processAuthorizationEvent( required any event );
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://cbsso.ortusbooks.com/providers/built-in-providers.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
