I m trying to make a request every 3 seconds and print out the response but until now no luck :( . I m pretty new to the Observables
, so what am I doing wrong ?
checkConnection() {
const URL = "https://www.google.at/";
Observable.interval(3000)
.flatMap(() => this.http.get(URL).map(res => res.json()).catch((error:any) => Observable.throw(error.json().error || 'Server error'))
.subscribe(data => {
console.log(data)
})
)
}