Hi,
I already have a working api tested by apifox
and it produced this code for me
var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
var raw = JSON.stringify({
"name": "k1d",
"email": "1213@gmail.com"
});
var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
fetch("/global/i18n-user/register?sign={{sign}}×tamp={{timestamp}}&appkey={{appkey}}&appuid={{appuid}}", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
now I don't know how to proceed
**PS the sign={{sign}} part is a combination of timestamp={{timestamp}}&appkey={{appkey} encrypted with MD5 encryption, but I don't know how to make this encryption in Airtable Script, I'm fairly new to making an api myself as I generally just use make to handle this part but now I need to create it on my own, just to see if the community can help 🙂