سالم الاعسم و معين الاعسم اللهجة الجديدة
by -
Dewan
on -
April 16, 2021
var axios = require("axios").default;
var options = {
method: 'GET',
url: 'https://lunapic-photo-effects.p.rapidapi.com/v2/api-call.php',
params: {url: 'https://lunapic.com/editor/images/slide22.jpg', filter: 'sepia'},
headers: {
'x-rapidapi-host': 'lunapic-photo-effects.p.rapidapi.com',
'x-rapidapi-key': 'SIGN-UP-FOR-KEY'
}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
0 Comments