fix: Update Dataguidance News API Url (#18352)
* update dataguidance feed * fix link * update source url * Update index.ts
This commit is contained in:
parent
8a0efc0ba2
commit
f97f8c367c
|
|
@ -20,7 +20,7 @@ export const route: Route = {
|
|||
|
||||
async function handler() {
|
||||
const rootUrl = 'https://www.dataguidance.com';
|
||||
const url = 'https://dgcb20-ca-northeurope-dglive.yellowground-c1f17366.northeurope.azurecontainerapps.io/api/v1/content/articles?order=DESC_publishedOn&limit=25&article_types=news_post';
|
||||
const url = 'https://www.dataguidance.com/api/v1/kb/content/articles?news_types=510&news_types=511&news_types=512&news_types=513&order=DESC_publishedOn&limit=25&article_types=news_post';
|
||||
|
||||
const response = await ofetch(url);
|
||||
|
||||
|
|
@ -32,7 +32,7 @@ async function handler() {
|
|||
url: item.url,
|
||||
pubDate: parseDate(item.publishedOn),
|
||||
}));
|
||||
const baseUrl = 'https://dgcb20-ca-northeurope-dglive.yellowground-c1f17366.northeurope.azurecontainerapps.io/api/v1/content/articles/by_path?path=';
|
||||
const baseUrl = 'https://www.dataguidance.com/api/v1/kb/content/articles/by_path?path=';
|
||||
items = await Promise.all(
|
||||
items.map((item) =>
|
||||
cache.tryGet(item.link, async () => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue