Hi I need to convert JSON to form-data or x-www-forum-urlencoded and I am unsure how to do this using JSON.stringify(). Would anyone be able to help me? I'm using react native and strapi headless CMS in order to try and get authentication set up for my application but I'm getting a bad request 400 error.
Code:
const auth = useMemo( () => ({
login: async (email, password) => {
const {data} = await axios.post('http://192.168.0.11:1337/auth/local', {
identifer: email,
password,
});