Published
- 1 min read
axios post x-www-form-urlencoded
The solution for this is noted below
axios post x-www-form-urlencoded
Solution
axios.post(
authServerUrl,
new URLSearchParams({
username: 'abcd', //gave the values directly for testing
password: '1235!',
client_id: 'user-client'
})
)
Try other methods by searching on the site. That is if this doesn’t work