All files / app/config oauth.config.ts

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30                                        1x                  
/**
 * Configuration OAuth
 *
 * Pour obtenir vos credentials :
 *
 * Google:
 * 1. Allez sur https://console.cloud.google.com/
 * 2. Créez un projet ou sélectionnez-en un
 * 3. Activez l'API "Google+ API"
 * 4. Créez des identifiants OAuth 2.0
 * 5. Ajoutez http://localhost:4200 dans les origines autorisées
 *
 * Facebook:
 * 1. Allez sur https://developers.facebook.com/
 * 2. Créez une application
 * 3. Ajoutez "Facebook Login" comme produit
 * 4. Configurez les paramètres OAuth
 * 5. Ajoutez http://localhost:4200 dans les domaines autorisés
 */
 
export const oauthConfig = {
  google: {
    clientId: '1073753357528-j2djuti3k96c6lcvpdlse2c8l8cumlu9.apps.googleusercontent.com'
  },
  facebook: {
    appId: '760430080401968'
  }
};