Comment on page
Change Authentication Method
post
https://api.illusory.io
/api:Oj9wVgoa/changeAuthMethod
Change Auth Method
In this example, we're performing an HTTP request using axios-npm.
axios({
method: "POST",
headers: { "Content-Type": "application/json" },
url: "https://api.illusory.io/api:Oj9wVgoa/changeAuthMethod",
data: {
// Your apiKey goes here 👇
apiKey: "{YOUR_UNIQUE_API_KEY}",
// Your authEmail goes here 👇
authEmail: "{YOUR_UNIQUE_AUTH_EMAIL}",
proxy: "AT-US-LA1-6666",
// 👇 Set to IP Address or 'Disabled'
spec: "creds"
},
}).then(function (response) {
console.log(response);
});
Last modified 2yr ago