This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const fetchBacklogWikiContent = async (wikiId) => { | |
const SPACE_ID = process.env.BACKLOG_SPACE_ID; | |
const API_KEY = process.env.BACKLOG_API_KEY; | |
if (!SPACE_ID || !API_KEY) { | |
throw new Error("環境変数 BACKLOG_SPACE_ID または BACKLOG_API_KEY が未設定です"); | |
} | |
const url = `https://${SPACE_ID}.backlog.com/api/v2/wikis/${wikiId}?apiKey=${API_KEY}`; | |