angular in login with facebook in get access token code example
Example 1: using fb login with angular app
npm install --save angularx-social-login
Example 2: using fb login with angular app
const config = new AuthServiceConfig([
{
id: FacebookLoginProvider.PROVIDER_ID,
provider: new FacebookLoginProvider('2203659926599837')
}
]);
export function provideConfig() {
return config;
}