Every line of 'axios bearer token' 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.
36 validateToken(requestUrl, headers) { 37 return axios({ method: 'GET', url: `${this.prefix}${requestUrl}`, headers }).then( 38 response => { 39 if (response.data && response.data.data) { 40 response.data = response.data.data; 41 } 42 // if (response.headers) { 43 // updateHeaders(response.headers); 44 // } 45 return response; 46 }, 47 () => { 48 return {}; 49 }, 50 ); 51 }
39 getRequestToken() { 40 const url = this.satellizerConfig.baseUrl ? resolve(this.satellizerConfig.baseUrl, this.defaults.url) : this.defaults.url; 41 return this.$http.post(url, this.defaults); 42 }
69 get token() { 70 return this.provider.auth_token; 71 }
108 public async deleteToken(deleteToken: string, accessToken?: string): Promise { 109 const url = Util.fixUrl(`${this.cluster.rest_server_uri}/api/v1/token/${deleteToken}`); 110 if(accessToken === undefined) { 111 accessToken = await super.token(); 112 } 113 const res = await request.delete(url, { 114 headers: { 115 Authorization: `Bearer ${accessToken}`, 116 'Content-Type': 'application/json' 117 } 118 }); 119 return JSON.parse(res); 120 }
27 requestToken(params) { 28 return new Promise(resolve => { 29 Request.send({ 30 method: `POST`, 31 url: `${Settings.apiUri}/oauth/token`, 32 params, 33 success: async response => { 34 const options = JSON.parse(response); 35 await BrowserStorage.set({data: options}, true); 36 resolve({error: false, response}); 37 }, 38 error: async (status, response) => { 39 await BrowserStorage.remove(`data`, true); 40 resolve({error: true, response, status}); 41 } 42 }); 43 }); 44 }
121 export function _authorization__header__access_token(token__auth0) { 122 const authorization__header__access_token = 123 _authorization__token__auth0__access_token() 124 || false 125 return authorization__header__access_token 126 function _authorization__token__auth0__access_token() { 127 const token_type = token__auth0 && token__auth0.token_type 128 const access_token = token__auth0 && token__auth0.access_token 129 const authorization__token__auth0 = 130 (token_type && access_token) 131 ? `${token_type} ${access_token}` 132 : null 133 return authorization__token__auth0 134 } 135 }