fix: Update Dataguidance News API Url (#18352)

* update dataguidance feed

* fix link

* update source url

* Update index.ts
This commit is contained in:
Harvey Qiu 2025-02-19 10:33:35 +08:00 committed by GitHub
parent 8a0efc0ba2
commit f97f8c367c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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 () => {