Get all services for a given identifier.
Where we should look for services.
A list of all services for a given identifier.
const services = await getServicesFrom("bordeaux");for (const service of services) { console.log(service.title, service.url);} Copy
const services = await getServicesFrom("bordeaux");for (const service of services) { console.log(service.title, service.url);}
const feeds = await getFeeds();const services = await getServicesFrom(feeds[0].identifier);// ... Copy
const feeds = await getFeeds();const services = await getServicesFrom(feeds[0].identifier);// ...
Get all services for a given identifier.