Trying to get action buttons configured with Macros to launch simple web sites and do a refresh.
Have tried code but when clicking on button nothing happens.
What am i missing?
Any help is greatly appreciated
import xapi from 'xapi';
async function fetchCurrent() {
try {
console.log('Fetched data from BBC:', response.Body);
} catch (error) {
console.error('Error fetching data from BBC:', error);
}
}
function init() {
xapi.Event.UserInterface.Extensions.Panel.Clicked.on(e => {
if (e.PanelId === 'bbc') {
console.log('Panel clicked: BBC');
}
});
xapi.Config.HttpClient.Mode.set('On').then(() => {
console.log('HTTP Client Mode enabled');
fetchCurrent();
setInterval(fetchCurrent, 1000 * 60 * 10); // Fetch data every 10 minutes
xapi.Command.UserInterface.Extensions.Panel.Remove({ PanelId: 'bbc' });
}).catch((error) => {
console.error('Failed to enable HTTP Client Mode:', error);
});
}
init();