Angular 2 Http post error
问题 I have an Ionic 2 app that will get some events from Facebook. I'm trying to send a post request to the Graph Api with a batch containing multiple requests but my subscription always return this error: {"_body":"","status":404,"statusText":"Ok","headers":{"Client-Via", ["shouldInterceptRequest"]},"type":2,"url":"https://graph.facebook.com/"} The subscription inside my component: this.eventListService.get() .subscribe( response => this.response = response, error => this.error = error )