Do you how to make a POST request from React of the following:
http --auth name:password POST http://localhost:5000/api/tokens
My current attempt to make a request with React is as follow:
const requestOptions = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'name',
password: 'password'
})
};
fetch('/api/tokens', requestOptions).then(res => res.json());
Thanks