Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add header to a post request in angular 2?

//In services.ts

import { Injectable } from '@angular/core';
import { Http, Headers, RequestOptions } from '@angular/http';
import 'rxjs/Rx';
@Injectable()
export class DataService {

constructor(private http: Http) {   }
fetch(){
   return this.http.get('json-object-link').map(
      (res) => res.json()
    )
       }

 }

//In component

 ngOnInit() {

 this.dataService.fetch()
    .subscribe(
      (data) => this.ninjas = data
    );
}

I want to add the following header to this request:
"headers":
{
"content-type": "application/json",
"access_token": "abcd"
}

like image 608
utkarshver Avatar asked May 31 '17 22:05

utkarshver


2 Answers

@Injectable()
export class UserService {
    constructor (private http:HttpClient) {}

    getUserByName(username: string) {
        let url="http://localhost:8088/rest/user/userName";
        let header=new Headers({'Content-Type': 'application/json', 'Authorization': 
            'Bearer '+localStorage.getItem("access_token")});
        return this.http.post(url, username, {headers: header});
    }
}
like image 77
Praneeth Reddy Avatar answered Oct 01 '22 18:10

Praneeth Reddy


Try this

 let headers = new Headers({ "content-type": "application/json", });
    headers.append('access_token', "abcd");
    let options = new RequestOptions({ headers: headers });

 this.http
      .post(url, data, options)
like image 38
Eduardo Vargas Avatar answered Oct 01 '22 16:10

Eduardo Vargas