easy-social-auth
v1.0.823
Published
A flexible, standalone package for social authentication using Google, Facebook & Twitter
Downloads
221
Maintainers
Readme
Easy Social Auth
Supported Social Authentication Providers
A flexible, standalone package for social authentication using Google, Facebook, Instagram, Tiktok, Spotify, LinkedIn, and Twitter(X).
Installation
npm install easy-social-auth
Usage
Environment Variables
Create a .env file with the following variables:
GOOGLE_AUTH_URL=https://google-auth-url
GOOGLE_CLIENT_ID=your-google-client-id
GOOGLE_CLIENT_SECRET=your-google-client-secret
GOOGLE_TOKEN_ENDPOINT=https://oauth2.googleapis.com/token
GOOGLE_USER_INFO_ENDPOINT=https://www.googleapis.com/oauth2/v2/userinfo
FACEBOOK_AUTH_URL=facebook-auth-url
FACEBOOK_APP_ID=your-facebook-app-id
FACEBOOK_APP_SECRET=your-facebook-app-secret
FACEBOOK_TOKEN_ENDPOINT=https://graph.facebook.com/v9.0/oauth/access_token
FACEBOOK_USER_INFO_ENDPOINT=https://graph.facebook.com/me?fields=id,name,email
TWITTER_AUTH_URL=twitter-auth-url
TWITTER_CONSUMER_KEY=your-twitter-consumer-key
TWITTER_CONSUMER_SECRET=your-twitter-consumer-secret
TWITTER_TOKEN_ENDPOINT=https://api.twitter.com/oauth2/token
TWITTER_USER_INFO_ENDPOINT=https://api.twitter.com/2/account/verify_credentials.json
TWITTER_AUTH_URL=https://api.twitter.com/oauth2/authorize
INSTAGRAM_AUTH_URL=instagram-auth-url
INSTAGRAM_CLIENT_ID=your-instagram-client-id
INSTAGRAM_CLIENT_SECRET=your-instagram-client-secret
INSTAGRAM_ACCESS_TOKEN_URL=https://api.instagram.com/oauth/access_token
INSTAGRAM_LONG_LIVED_ACCESS_TOKEN_URL=https://graph.instagram.com/access_token
INSTAGRAM_REFRESH_TOKEN_URL=https://graph.instagram.com/refresh_access_token
INSTAGRAM_USER_INFO_ENDPOINT=https://graph.instagram.com/me?fields=id,username,account_type
SPOTIFY_AUTH_URL=spotify-auth-url
SPOTIFY_CLIENT_ID=your-spotify-client-id
SPOTIFY_CLIENT_SECRET=your-spotify-client-secret
SPOTIFY_TOKEN_ENDPOINT=https://accounts.spotify.com/api/token
SPOTIFY_USER_INFO_ENDPOINT=https://api.spotify.com/v1/me
TIKTOK_AUTH_URL=tiktok-auth-url
TIKTOK_CLIENT_KEY=your-tiktok-client-key,
TIKTOK_CLIENT_SECRET=your-tiktok-client-secret
TIKTOK_TOKEN_ENDPOINT=https://open.tiktokapis.com/v2/oauth/token/
TIKTOK_USER_INFO_ENDPOINT=https://open.tiktokapis.com/v2/user/info/?fields=open_id,union_id,avatar_url,display_name
LINKEDIN_AUTH_URL=linkedin-auth-url
LINKEDIN_CLIENT_KEY=your-linkedin-client-key
LINKEDIN_CLIENT_SECRET=your-linkedin-client-secret
LINKEDIN_TOKEN_ENDPOINT=https://www.linkedin.com/oauth/v2/accessToken
LINKEDIN_USER_INFO_ENDPOINT=https://api.linkedin.com/v2/me
Example
import { SocialAuthService } from "easy-social-auth";
// only the Google strategy will initialize if only it's env values are provided
const socialAuthService = new SocialAuthService();
if (socialAuthService.googleStrategy) {
const googleAuthUrl = socialAuthService.googleStrategy.generateAuthUrl(
"your-google-redirect-uri"
);
console.log("Google Auth URL:", googleAuthUrl);
async function authenticateWithGoogle(code: string) {
const tokenResponse =
await socialAuthService.googleStrategy.exchangeCodeForToken(
code,
"your-google-redirect-uri"
);
if (tokenResponse.status) {
const userData = await socialAuthService.googleStrategy.getUserData(
tokenResponse.data!
);
console.log("Google User Data:", userData);
} else {
console.error("Google Token Exchange Error:", tokenResponse.error);
}
}
}
// only the Facebook strategy will initialize if only it's env values are provided
const socialAuthServiceFacebook = new SocialAuthService();
if (socialAuthServiceFacebook.facebookStrategy) {
const facebookAuthUrl =
socialAuthServiceFacebook.facebookStrategy.generateAuthUrl(
"your-facebook-redirect-uri"
);
console.log("Facebook Auth URL:", facebookAuthUrl);
async function authenticateWithFacebook(code: string) {
const tokenResponse =
await socialAuthServiceFacebook.facebookStrategy.exchangeCodeForToken(
code,
"your-facebook-redirect-uri"
);
if (tokenResponse.status) {
const userData =
await socialAuthServiceFacebook.facebookStrategy.getUserData(
tokenResponse.data!
);
console.log("Facebook User Data:", userData);
} else {
console.error("Facebook Token Exchange Error:", tokenResponse.error);
}
}
}
// only the Twitter strategy will initialize if only its env values are provided
const socialAuthServiceTwitter = new SocialAuthService();
if (socialAuthServiceTwitter.twitterStrategy) {
const twitterAuthUrl =
socialAuthServiceTwitter.twitterStrategy.generateAuthUrl(
"your-twitter-redirect-uri"
);
console.log("Twitter Auth URL:", twitterAuthUrl);
async function authenticateWithTwitter() {
const tokenResponse =
await socialAuthServiceTwitter.twitterStrategy.requestToken();
if (tokenResponse.status) {
const userData =
await socialAuthServiceTwitter.twitterStrategy.getUserData(
tokenResponse.data!
);
console.log("Twitter User Data:", userData);
} else {
console.error("Twitter Token Request Error:", tokenResponse.error);
}
}
}
// only the Instagram strategy will initialize if only its env values are provided
const socialAuthServiceInstagram = new SocialAuthService();
if (socialAuthServiceInstagram.instagramStrategy) {
const instagramAuthUrl =
socialAuthServiceInstagram.instagramStrategy.generateAuthUrl(
"your-instagram-redirect-uri"
);
console.log("Instagram Auth URL:", instagramAuthUrl);
async function authenticateWithInstagram() {
const tokenResponse =
await socialAuthServiceInstagram.instagramStrategy.exchangeCodeForToken(
code,
"your-instagram-redirect-uri"
);
if (tokenResponse.status) {
const userData =
await socialAuthServiceInstagram.instagramStrategy.getUserData(
tokenResponse.data!
);
console.log("Instagram User Data:", userData);
} else {
console.error("Instagram Token Request Error:", tokenResponse.error);
}
}
}
// only the Spotify strategy will initialize if only its env values are provided
const socialAuthServiceSpotify = new SocialAuthService();
if (socialAuthServiceSpotify.spotifyStrategy) {
const spotifyAuthUrl =
socialAuthServiceSpotify.spotifyStrategy.generateAuthUrl(
"your-spotify-redirect-uri"
);
console.log("Spotify Auth URL:", spotifyAuthUrl);
async function authenticateWithSpotify() {
const tokenResponse =
await socialAuthServiceSpotify.spotifyStrategy.exchangeCodeForToken(
code,
"your-spotify-redirect-uri"
);
if (tokenResponse.status) {
const userData =
await socialAuthServiceSpotify.spotifyStrategy.getUserData(
tokenResponse.data!
);
console.log("Spotify User Data:", userData);
} else {
console.error("Spotify Token Request Error:", tokenResponse.error);
}
}
}
// only the Tiktok strategy will initialize if only its env values are provided
const socialAuthServiceTiktok = new SocialAuthService();
if (socialAuthServiceTiktok.tiktokStrategy) {
const tiktokAuthUrl = socialAuthServiceTiktok.tiktokStrategy.generateAuthUrl(
"your-tiktok-redirect-uri"
);
console.log("Tiktok Auth URL:", tiktokAuthUrl);
async function authenticateWithTiktok() {
const tokenResponse =
await socialAuthServiceTiktok.tiktokStrategy.exchangeCodeForToken(
code,
"your-tiktok-redirect-uri"
);
if (tokenResponse.status) {
const userData = await socialAuthServiceTiktok.tiktokStrategy.getUserData(
tokenResponse.data!
);
console.log("Tiktok User Data:", userData);
} else {
console.error("Tiktok Token Request Error:", tokenResponse.error);
}
}
}
// only the LinkedIn strategy will initialize if only its env values are provided
const socialAuthServiceLinkedIn = new SocialAuthService();
if (socialAuthServiceLinkedIn.linkedInStrategy) {
const linkedInAuthUrl =
socialAuthServiceLinkedIn.linkedInStrategy.generateAuthUrl(
"your-linkedIn-redirect-uri"
);
console.log("LinkedIn Auth URL:", linkedInAuthUrl);
async function authenticateWithLinkedIn() {
const tokenResponse =
await socialAuthServiceLinkedIn.linkedInStrategy.exchangeCodeForToken(
code,
"your-linkedIn-redirect-uri"
);
if (tokenResponse.status) {
const userData =
await socialAuthServiceLinkedIn.linkedInStrategy.getUserData(
tokenResponse.data!
);
console.log("LinkedIn User Data:", userData);
} else {
console.error("LinkedIn Token Request Error:", tokenResponse.error);
}
}
}
API
Generate Auth Url
generateAuthUrl(redirectUri: string, scope?: string): string
Generates the authorization URL for the specified authentication type.
Parameters:
redirectUri
(string
): The redirect URI for the authentication.
scope
(string
, optional): An optional scope parameter to include in the URL.
Returns:
string
: The generated authorization URL.
Exchange Code for Token
exchangeCodeForToken(code: string, redirectUri: string, additionalParams?: Record<string, string>): Promise<SocialAuthResponse<string>>
Exchanges an authorization code for an access token.
Parameters:
code
(string
): The authorization code received from the authentication provider.
redirectUri
(string
): The redirect URI used in the authentication request.
additionalParams
(Record<string, string>
, optional): Additional parameters for the token exchange request.
Returns:
Promise<SocialAuthResponse<string>>
: A promise that resolves to the SocialAuthResponse
containing the access token.
Refresh Access Token
refreshAccessToken(refreshToken: string): Promise<SocialAuthResponse<string>>
Refreshes an access token using a refresh token.
Parameters:
refreshToken
(string
): The refresh token received from the authentication provider.
Returns:
Promise<SocialAuthResponse<string>>
: A promise that resolves to the SocialAuthResponse
containing the new access token.
Exchange Password for Token
exchangePasswordForToken(username: string, password: string): Promise<SocialAuthResponse<string>>
Exchanges a username and password for an access token.
Parameters:
username
(string
): The username.
password
(string
): The password.
Returns:
Promise<SocialAuthResponse<string>>
: A promise that resolves to the SocialAuthResponse
containing the access token.
Get User Data
getUserData(accessToken: string): Promise<SocialAuthResponse<ISocialUser>>
Retrieves user data for the specified authentication type using the access token.
Parameters:
accessToken
(string
): The access token received from the authentication provider.
Returns:
Promise<SocialAuthResponse<ISocialUser>>
: A promise that resolves to the SocialAuthResponse
containing the user data.