Discourse Discover에 익숙하지 않으시다면 이 토픽을 확인해 보세요.
최근 Discourse Discover에 멋진 새 기능을 추가했습니다. 이제 관심 있는 주제에 대해 Discourse 커뮤니티 전반의 최근 인기 토픽 토론을 볼 수 있습니다. 기술적으로는 단순한 변경이지만, 다양한 사용자들에게 유용합니다.
작동 방식은?
Discover에 포함된 사이트의 경우, 최신으로 가장 활발한 토픽을 가져오는 크롤러를 실행하며, 간단한 알고리즘을 사용하여 해당 토픽을 주제별로 그룹화합니다. 많은 주제에 대한 Discourse 커뮤니티가 있으며, 이를 통해 일반 대중이 해당 주제에 대해 사람들이 어떤 이야기를 나누고 있는지 볼 수 있는 창구를 제공합니다.
좋습니다, 어디서 볼 수 있나요?
이 기능은 현재 iOS 모바일 앱인 DiscourseHub에서 사용할 수 있으며, 곧 Android 및 discover.discourse.com 웹사이트에서도 제공됩니다.
다음 동영상과 사진에서 미리 볼 수 있습니다:
내 앱/웹사이트에서 사용할 수 있나요?
네, 물론입니다. 우리는 이를 어떤 클라이언트에서도 사용 가능한 간단한 API로 구축했습니다. 다음 두 엔드포인트를 사용해야 합니다:
https://discover.discourse.com/hot-topics-tags.json→ 가져올 대상/태그를 반환합니다:https://discover.discourse.com/hot-topics.json?tag=<name>tag는 필수입니다 — “모든 태그” 모드는 없으며, 다른 값은400을 반환합니다.- 더 많은 결과를 얻으려면
page매개변수를 전달합니다 – 0부터 시작하며, 기본값은 0이고 최대 5페이지까지 결과를 반환합니다.
예시
먼저 사용 가능한 태그를 가져오기 시작합니다:
λ curl https://discover.discourse.com/hot-topics-tags.json
{
"tags": [
"ai",
"finance",
"apple",
"automation",
"media",
"research",
"smart-home",
"linux",
"open-source",
"webdev",
"health",
"gaming",
"audio",
"devops",
"crypto",
"mapping",
"technology",
"support",
"interests",
"programming"
]
}
그런 다음 하나를 선택합니다. 예를 들어 ai를 사용하고 두 번째 엔드포인트에 전달합니다:
curl "https://discover.discourse.com/hot-topics.json?tag=ai"
그러면 다음과 같은 응답을 받게 됩니다:
"hot_topics": [
{
"id": 431863,
"title": "Deepseek V4 released",
"url": "https://forums.developer.nvidia.com/t/deepseek-v4-released/367696",
"excerpt": "I think people with 4 DGX Spark are good to go. Rest of us needs to wait for quantized version.",
"like_count": 143,
"reply_count": 76,
"views": 5891,
"score": 41.6296558464954,
"image_url": null,
"remote_created_at": "2026-04-24T03:21:32.475Z",
"community_name": "NVIDIA Developer Forums",
"community_url": "https://forums.developer.nvidia.com",
"community_logo_url": "https://canada1.discourse-cdn.com/discover/original/2X/b/bb908321f62e7dd8c9e87fb8750e242c2e4827d9.png"
},
{
"id": 564616,
"title": "Webhook URL shows localhost instead of domain (self-hosted n8n)",
"url": "https://community.n8n.io/t/webhook-url-shows-localhost-instead-of-domain-self-hosted-n8n/292267",
"excerpt": "Hello, \nI am trying to receive webhook events from Bitrix24 CRM in my self-hosted n8n. \nPreviously it worked on another cloud n8n account, but now on my current hosted instance the Webhook node generates URLs starting with localhost. \nWebhook method is currently set to GET. I also tested POST, but it still does not receive data. \nBecause of that, Bitrix24 does not seem to reach the webhook. \nIs it…",
"like_count": 13,
"reply_count": 8,
"views": 32,
"score": 41.1415045485148,
"image_url": null,
"remote_created_at": "2026-04-28T12:16:38.826Z",
"community_name": "N8n Community",
"community_url": "https://community.n8n.io",
"community_logo_url": "https://canada1.discourse-cdn.com/discover/original/2X/d/d34907e298b033e3eb94bcaff8fd8c82b1eb66e7.png"
},
// ...
이후 토픽을 나열할 수 있습니다. 엔드포인트는 하루 종일 업데이트되므로 각 주제가 최신 결과를 유지합니다.



