======auth.service.ts==============
saveOrUpdateUser(access_tokenn: string): Observable<any> {
let httpOptions = {
headers: new HttpHeaders({
Accept: 'application/json',
'Content-Type': 'application/json',
'Access-Control-Allow-Origin': '*',
}),
};
return this.http.get(this.getUrl('saveOrUpdateUser'), httpOptions);
}
===============================
======login.component.ts==============
saveOrUpdateUser(access_token: string) {
this.authService.saveOrUpdateUser(access_token).subscribe(
//결과를 받아오는경우
(result) => {
console.log(result);
},
//에러를 받아오는경우
(err) => {
console.log(err);
}
);
}
===============================
두번째 사진 : 결과, 에러 받아온는 경우 둘다 셋팅
'Angular.js' 카테고리의 다른 글
Angular.js Routing Parameter전달 (0) | 2020.08.10 |
---|---|
Visual Studio Code 에서 Tab키가 정상작동 하지 않을경우 (1) | 2020.08.10 |
OAuth2 로그인 scope 여러개 지정하기 복수 (1) | 2020.07.31 |
구글 OAuth2로그인 간단한 절차 (0) | 2020.07.30 |
구글 OAuth2 로그인 "확인되지 않은 앱 입니다. " 해결방법 !! [angular https ssl통신 설정방법 ] (0) | 2020.07.30 |