I've looked up all the github issues, and the StackOverflow posts, but I'm unable to get it working
( https://github.com/angular/angular/issues/5632 )
(Angular 2 HTTP GET with TypeScript error http.get(...).map is not a function in [null] )
- I'm using [email protected]
 - Rxjs ([email protected]) is successfully imported when I check console/resources in console.
 
I tried different imports:
import 'rxjs/add/operator/map';
import 'rxjs/rx';
But I keep getting the error 
http.post(...).map is not a function
update - code context
let body = "email=" + email + "&password=" + password;
let headers = new Headers();
headers.append('Content-Type', 'application/x-www-from-urlencoded');
this.http.post('http://angular.app/api/v1/auth') // angular.app is laravel backend
      .map( (responseData) => {
          return responseData.json();
      })
    
HTTP_PROVIDERSwhen calling yourbootstrapfunction?ReferenceError: map is not definedbut I did importrxjs/add/operator/mapin every file (even on my main file)