feat: Sync to OSS repo

This commit is contained in:
Wanjohi
2026-08-06 22:13:51 +03:00
parent 46d2a56180
commit 3faac3008f
144 changed files with 27561 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
/**
* Use this provider to authenticate with Github.
*
* ```ts {5-8}
* import { GithubProvider } from "@openauthjs/openauth/provider/github"
*
* export default issuer({
* providers: {
* github: GithubProvider({
* clientID: "1234567890",
* clientSecret: "0987654321"
* })
* }
* })
* ```
*
* @packageDocumentation
*/
import { Oauth2Provider, Oauth2WrappedConfig } from './oauth2.js';
export interface GithubConfig extends Oauth2WrappedConfig {}
/**
* Create a Github OAuth2 provider.
*
* @param config - The config for the provider.
* @example
* ```ts
* GithubProvider({
* clientID: "1234567890",
* clientSecret: "0987654321"
* })
* ```
*/
export function GithubProvider(config: GithubConfig) {
return Oauth2Provider({
...config,
type: 'github',
endpoint: {
authorization: 'https://github.com/login/oauth/authorize',
token: 'https://github.com/login/oauth/access_token'
}
});
}