“AXIOS POST WNIOS” Kod odpowiedzi

Nagłówek autoryzacji AXIOS

const username = ''
const password = ''

const token = Buffer.from(`${username}:${password}`, 'utf8').toString('base64')

const url = 'https://...'

axios.post(url, {
  headers: {
    'Authorization': `Basic ${token}`
  }
})
Creepy Copperhead

Ustaw nagłówek Auth w instancji Axios

import axios from 'axios';

// use a middleware to intercept this action and pull token
// axios will automatically include header in all http requests

export function setToken(token) {
  axios.defaults.headers.common['Authorization'] =
      `Bearer ${token}`;
}
Khadidja Arezki

AXIOS POST WNIOS

const createPostRequest = async () => {
	try{
		const { data } = await axios.post(url, body_data, {
		   headers: {
	    	 'Authorization': `Basic ${token}`
		   },
		})
    
	    console.log(data)
	} catch (error) {
		console.log(error)
	}
}

createPostRequest();
Inquisitive Iguana

Odpowiedzi podobne do “AXIOS POST WNIOS”

Pytania podobne do “AXIOS POST WNIOS”

Więcej pokrewnych odpowiedzi na “AXIOS POST WNIOS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu