Skip to content
Advertisement

How to make a post request to create new users

I’m creating a chat app with react-chat-engine. And everything is working fine. Except for the fact that I don’t know how to make a post request to create new users.

Here’s my code

const handelSubmit = async(e) => {
  e.preventDefault();
  if (!(username.length > 0 && password === confirmPassword && password.length > 0)) return;

  const authObject = {
    'Private-Key': '2f389292-d5e1-4799-bd31-b456e7e94845',
    // 'Project-ID': '25a91c10-8623-4a0d-a48a-3de096d44b54',
    // 'User-Name': username,
    // 'User-Secret': password
  }

  const authHeader = {
    'Private-Key': '2f389292-d5e1-4799-bd31-b456e7e94845',
    'Project-ID': '25a91c10-8623-4a0d-a48a-3de096d44b54',
  }
  // const authBody = {
  //    'username': username,
  //    'secret': password
  // }

  try {
    //fetch the current user if it exists
    const userExists = await axios.get('https://api.chatengine.io/users', {
      headers: authObject
    });
    console.log('worked');
    console.log(userExists);
    // if user already exists and in localStorage redirect them to the chat room
    if (userExists && (localStorage.getItem('username') && localStorage.getItem('username') === username)) {
      setTimeout(() => {
        history.push('/chat')
      }, 1000)
      return;
    }
    console.log('worked2');
    // if user don't exists, create a new user 
    await axios.post('https://api.chatengine.io/users', {
      headers: authHeader,
      body: {
        'username': username,
        'secret': password
      }
    });
    // //saving user's username and password to localStorage
    // localStorage.setItem('username', username);
    // localStorage.setItem('password', password);
    //redirecting them to the login page to login
    console.log('worked25');
    history.push('/login')
  } catch (error) {
    console.log(error);
    setError(`oops, something went wrong`)
  }

}

I’m trying to add a new user to the users. But it keeps throwing this error to the console.

Error: Request failed with status code 403
    at createError (createError.js:16)
    at settle (settle.js:17)
    at XMLHttpRequest.handleLoad (xhr.js:62)

What can I do?

Advertisement

Answer

Try making

const authHeader = {'Private-Key': '2f389292-d5e1-4799-bd31-b456e7e94845'}

only and adding a / to the end in https://api.chatengine.io/users/ and I think it will work

If not, then your private key is probably incorrect.

(Also you should not be posting your private key online like this, it’s private for a reason.)

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement