做法
首先,到 SerpApi 註冊帳號,選擇一個方案,將 API Key 複製起來。
發送請求
使用 fetch
發送請求。
1 | await (await fetch('https://serpapi.com/search?key=your-api-key&lr=lang_zh-TW&q=台灣')).json() |
首先,到 SerpApi 註冊帳號,選擇一個方案,將 API Key 複製起來。
使用 fetch
發送請求。
1 | await (await fetch('https://serpapi.com/search?key=your-api-key&lr=lang_zh-TW&q=台灣')).json() |