API Linkedin отвечает HTML на локальном хосте https - PullRequest
0 голосов
/ 23 апреля 2020

Вот как я называю API

signInWithLinkedin() {
    return this.http.get('https://www.linkedin.com/oauth/v2/authorization?response_type=code&client_id=XXX&redirect_uri=http%3A%2F%2Flocalhost%3A4200%2FHome%2FSaveLinkedinUser&scope=r_liteprofile%20r_emailaddress%20w_member_social').toPromise();
  }

Разве оно не должно открывать всплывающее окно? Я получаю доступ к API с локального хоста, обслуживаемого по протоколу HTTPS

РЕДАКТИРОВАТЬ: пробовал это

signInWithLinkedin() {
    return this.http.get('https://www.linkedin.com/oauth/v2/authorization?response_type=code&client_id=81m2bav0ktciyz&redirect_uri=http%3A%2F%2Flocalhost%3A4200%2FHome%2FSaveLinkedinUser&scope=r_liteprofile%20r_emailaddress%20w_member_social').subscribe((res:any)=> {console.log("Http Get " + res); });
  }

все тот же. Ответ в html. Вставка запроса URL в браузер работает нормально.

...