Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add headers to my Angular post request?

Tags:

For a school project I need to make a simple login page with Angular. When a login button is clicked I need to add an Authorization header with my post. I created a backend and when I post my Authorization value to that backend with postman it works so nothing wrong with the backend. When I try to post to the same backend with my frontend it doesn't work. What is the best way to add headers to your post? It seems that the opinions are divided. This is my code:

export class LoginComponent{     title = 'Login';     email = '';     password = '';     credentials = '';     basic = '';     constructor(private http:HttpClient){      }      createAuthorizationHeader(headers:Headers,basic){         headers.append('Authorization',basic);     }      login(event){         this.email = (<HTMLInputElement>document.getElementById("email")).value;         this.password = (<HTMLInputElement>document.getElementById("password")).value;         this.credentials = this.email + ":" + this.password;         this.basic = "Basic " + btoa(this.credentials);         console.log(this.basic);         let headers = new Headers();         headers.append('Content-Type','application/json');         headers.append('Authorization',this.basic);         let options = new RequestOptions({headers:headers});         console.log(headers);         return this.http.post('http://localhost:8000/api/v1/authenticate',options)         .subscribe(             res =>{                 console.log(res);             },             err => {                 console.log(err.message);             }         )     } } 

When I run that code I get a 400 status response and the headers are not added.

like image 664
Arne Lecoutre Avatar asked Dec 11 '17 16:12

Arne Lecoutre


People also ask

Can we send headers in post request?

To send an Axios POST request with headers, you need to use the headers option. With axios. post() , the first parameter is the URL, the 2nd parameter is the request body, and the 3rd parameter is the options . For example, below is how you set the Content-Type header on an HTTP POST request.

How do I add headers in HTTP request in angular 8?

There are two ways by which we can add the headers. One, we add the HTTP Headers while making a request. The second way is to use the HTTP interceptor to intercept all the Requests and add the Headers. In both cases, we use the httpHeaders configuration option provided by angular HttpClient to add the headers.


2 Answers

The second argument passed in to HttpClient.post represents the body of the request, but you're providing Headers here. Use the following to provide the headers correctly:

return this.http.post('http://localhost:8000/api/v1/authenticate', null, options); 

I've shown null in the example for the body, but you probably want that to include the email and password properties in some form.

You're also mixing Http and HttpClient. If you're going to use HttpClient (which is now the recommended approach), drop RequestOptions and Headers in favour of HttpHeaders. This becomes:

let headers = new HttpHeaders({     'Content-Type': 'application/json',     'Authorization': this.basic }); let options = { headers: headers }; 

The rest of the code stays the same. Your createAuthorizationHeader function needs to use and return an instance of HttpHeaders. This class is immutable, so append returns a new object each time it is called. Import HttpHeaders from @angular/common/http.

like image 122
Kirk Larkin Avatar answered Nov 09 '22 23:11

Kirk Larkin


This may Help You

let headers = new Headers(); headers.append('Content-Type','application/json'); //post data missing(here you pass email and password) data= { "email":email, "password":password } return this.http.post('http://localhost:8000/api/v1/authenticate',data,{ headers: headers})     .subscribe(         res =>{             console.log(res);         },         err => {             console.log(err.message);         }     ) 
like image 38
Robert Avatar answered Nov 09 '22 23:11

Robert