如何使用角度来制作angular-social-auth

时间:2018-01-26 14:44:10

标签: angular google-authentication facebook-authentication

我是angular2-social-auth,在角度为5的项目中,但是它给了我一个错误的代码:

Module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';


import { AppComponent } from './app.component';
import { Angular2SocialLoginModule } from "angular2-social-auth";

let providers = {
  /* "google": {
  "clientId": "GOOGLE_CLIENT_ID"
},
"linkedin": {
  "clientId": "LINKEDIN_CLIENT_ID"
 },*/
"facebook": {
   "clientId": "MyGeneratedCode",
   "apiVersion": "v2.11" //like v2.4
 }

};

@NgModule({
 declarations: [
  AppComponent
   ],
imports: [
 BrowserModule,
  Angular2SocialLoginModule
],
 providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Angular2SocialLoginModule.loadProvidersScripts(providers);

component.ts:

import { Component, OnDestroy } from '@angular/core';
import { AuthService } from "angular2-social-auth";

@Component({
 selector: 'app-root',
 templateUrl: './app.component.html',
 styleUrls: ['./app.component.css']
 })
 export class AppComponent  implements OnDestroy {

 title = 'app';

  constructor(public _auth: AuthService){ }

 signIn(provider){
 this._auth.login(provider).subscribe(
   (data) => {
               console.log(data);
               //user data
               //first_name, last_name, image, uid, provider, email, token     (returns  accessToken for Facebook and Google no token for linkedIn)
             }
 )

}

 logout(){
   this._auth.logout().subscribe(
   (data)=>{
     //return a boolean value.
    }
  )
 }

}

html:

<h1>
 Sign in
</h1>

<button (click)="socialSignIn('facebook')">Sign in with Facebook</button>
<button (click)="socialSignIn('google')">Signin in with Google</button>   

我做了文档告诉我的内容,任何人都可以帮忙吗? 当我点击facebook按钮时,它给了我这个错误:

  

TypeError:_co.socialSignIn不是函数   堆栈跟踪:   View_AppComponent_0 /&LT; @ng:///AppModule/AppComponent.ngfactory.js:14:19   的handleEvent @的WebPack内部:///../../../core/esm5/core.js:13745:115

1 个答案:

答案 0 :(得分:0)

您尝试调用名为&#34; socialSignIn&#34;的函数。在你的HTML中,但我没有在你的代码中看到这个功能。 因此,错误消息很明确:socialSignIn is not a function

尝试拨打signIn('facebook')而不是