// استدعاء API لعرض صفحة محددة
fetch('https://earnow.online/api?api=3d5816048250f3f81526abf44ab1f937e1a86081&url=yourdestinationlink.com&alias=CustomAlias')
.then(response => response.json())
.then(data => {
// عرض المحتوى المسترجع من الـ API
console.log(data);
})
.catch(error => {
// معالجة الأخطاء إذا حدثت
console.error('حدث خطأ: ', error);
});
No comments:
Post a Comment