Buckets:
ktongue/docker_container / .cache /opencode /node_modules /@openauthjs /openauth /src /provider /facebook.ts
| /** | |
| * Use this provider to authenticate with Facebook. Supports both OAuth2 and OIDC. | |
| * | |
| * #### Using OAuth | |
| * | |
| * ```ts {5-8} | |
| * import { FacebookProvider } from "@openauthjs/openauth/provider/facebook" | |
| * | |
| * export default issuer({ | |
| * providers: { | |
| * facebook: FacebookProvider({ | |
| * clientID: "1234567890", | |
| * clientSecret: "0987654321" | |
| * }) | |
| * } | |
| * }) | |
| * ``` | |
| * | |
| * #### Using OIDC | |
| * | |
| * ```ts {5-7} | |
| * import { FacebookOidcProvider } from "@openauthjs/openauth/provider/facebook" | |
| * | |
| * export default issuer({ | |
| * providers: { | |
| * facebook: FacebookOidcProvider({ | |
| * clientID: "1234567890" | |
| * }) | |
| * } | |
| * }) | |
| * ``` | |
| * | |
| * @packageDocumentation | |
| */ | |
| import { Oauth2Provider, Oauth2WrappedConfig } from "./oauth2.js" | |
| import { OidcProvider, OidcWrappedConfig } from "./oidc.js" | |
| export interface FacebookConfig extends Oauth2WrappedConfig {} | |
| export interface FacebookOidcConfig extends OidcWrappedConfig {} | |
| /** | |
| * Create a Facebook OAuth2 provider. | |
| * | |
| * @param config - The config for the provider. | |
| * @example | |
| * ```ts | |
| * FacebookProvider({ | |
| * clientID: "1234567890", | |
| * clientSecret: "0987654321" | |
| * }) | |
| * ``` | |
| */ | |
| export function FacebookProvider(config: FacebookConfig) { | |
| return Oauth2Provider({ | |
| ...config, | |
| type: "facebook", | |
| endpoint: { | |
| authorization: "https://www.facebook.com/v12.0/dialog/oauth", | |
| token: "https://graph.facebook.com/v12.0/oauth/access_token", | |
| }, | |
| }) | |
| } | |
| /** | |
| * Create a Facebook OIDC provider. | |
| * | |
| * This is useful if you just want to verify the user's email address. | |
| * | |
| * @param config - The config for the provider. | |
| * @example | |
| * ```ts | |
| * FacebookOidcProvider({ | |
| * clientID: "1234567890" | |
| * }) | |
| * ``` | |
| */ | |
| export function FacebookOidcProvider(config: FacebookOidcConfig) { | |
| return OidcProvider({ | |
| ...config, | |
| type: "facebook", | |
| issuer: "https://graph.facebook.com", | |
| }) | |
| } | |
Xet Storage Details
- Size:
- 1.89 kB
- Xet hash:
- e40335f65bb836b899c29f67fee72170a5032d2943f6fcdb2005f7b1a7d3d24f
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.