Azure 에 Bing Search를 이용해 데이터를 검색해본다. var bingApiKey = "Bing Search API 키"; var bingEndpoint = "https://api.bing.microsoft.com/v7.0/search"; function runBingSearch(searchQuery) { searchQuery = "비트코인 시황 알려줘"; console.log(`####### 질문 : ${searchQuery}`) const headers = {'Ocp-Apim-Subscription-Key': bingApiKey}; const mkt = 'ko-KR'; const cc = 'KR'; const promote = 'Webpages,News'; // 답변 승격 const ans..