10 examples of 'axios default headers' in JavaScript

Every line of 'axios default headers' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
16get defaults() {
17 return this.axiosInstance.defaults;
18}
55static setDefaultHeaders(headers) {
56 invariant(
57 typeof headers === 'undefined' || headers instanceof Object,
58 'Cannot set default headers for APIActionCreator to %s.' +
59 '`headers` must be `undefined` or a plain object.',
60 headers
61 );
62
63 defaultOptions.headers = headers;
64}
22getDefaultHeaders() {
23 return this._defaultHeaders;
24}
22private _createJsonHeaders(): Headers {
23 return new Headers({
24 'Accept': 'application/json',
25 'Content-Type': 'application/json'
26 });
27}
10public static getDefaultHttpHeaders() {
11 const headers = new HttpHeaders({
12 'Content-Type': 'application/json',
13 'Accept': 'application/json'
14 });
15 return headers;
16}
81customGet(endpoint, headers) {
82 return axios({
83 method: 'post',
84 url: this.baseUrl + endpoint,
85 headers: headers ? headers : this.getHeaders
86 })
87}
117setHeaders(headers) {
118 this.headers = headers
119}
60protected initializeHeaders(headers?): Headers {
61 const initializedHeaders = this.getDefaultHeaders();
62 headers = headers || {};
63 for (let name in headers) {
64 if (headers.hasOwnProperty(name)) {
65 initializedHeaders.append(name, headers[name]);
66 }
67 }
68 return initializedHeaders;
69}
180getHeaders(header: ?Token | ?Object): Object {
181 if (header instanceof Object) {
182 return header;
183 }
184
185 return {
186 'X-Auth-Token': this.token,
187 ...(this.tenant ? { 'Wazo-Tenant': this.tenant } : null),
188 Accept: 'application/json',
189 'Content-Type': 'application/json',
190 };
191}
21setHttp(axios) {
22 this.unsetHttp();
23
24 if (axios) {
25 this.http = axios;
26 this.originalAdapter = axios.defaults.adapter;
27 axios.defaults.adapter = config => this.adapter(config);
28 }
29 return this;
30}

Related snippets