Skip to content

Instantly share code, notes, and snippets.

@milon87
Created September 9, 2017 05:37
  • Star 11 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save milon87/f391e54e64e32e1626235d4dc4d16dc8 to your computer and use it in GitHub Desktop.
how to use x-www-form-urlencoded in react native
var details = {
'userName': 'test@gmail.com',
'password': 'Password!',
'grant_type': 'password'
};
var formBody = [];
for (var property in details) {
var encodedKey = encodeURIComponent(property);
var encodedValue = encodeURIComponent(details[property]);
formBody.push(encodedKey + "=" + encodedValue);
}
formBody = formBody.join("&");
fetch('http://identity.azurewebsites.net' + '/token', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/x-www-form-urlencoded'
},
body: formBody
})
@akgupta0777
Copy link

can we simplify the form body encoding

@polydevuk
Copy link

mguay22
Object.entries(form).forEach((key, value) => {
... should be:
Object.entries(form).forEach(([key, value]) => {

@rakeshpal90
Copy link

Really a great solution ever

@murtazavadnagar
Copy link

murtazavadnagar commented Feb 6, 2023

Thanks for the solution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment