利用 Google Trending 搜尋趨勢: https://trends.google.com/trending?geo=TW 取得最近的搜尋趨勢.
上面的連結是取得台灣地區的搜尋趨勢, 而其他地方的如下:
若要取得這個內容, 有沒有 API工具可以利用呢? 看起來 Google 目前沒有這個公開的 API可供利用, 不過這家公司提供了這個服務:
其中的 Google Trends API 可以提供這個結果:
利用 Google Trending 搜尋趨勢: https://trends.google.com/trending?geo=TW 取得最近的搜尋趨勢.
上面的連結是取得台灣地區的搜尋趨勢, 而其他地方的如下:
若要取得這個內容, 有沒有 API工具可以利用呢? 看起來 Google 目前沒有這個公開的 API可供利用, 不過這家公司提供了這個服務:
其中的 Google Trends API 可以提供這個結果:
Yahoo 電商的通知信如下:
親愛的用戶您好:
感謝您對我們的信任與支持,謹在此通知您,自即日起,香港商雅虎資訊股份有限公司台灣分公司所提供之Yahoo Taiwan電子商務服務係隸屬於統一集團旗下之服務。
本公司已針對Yahoo Taiwan電子商務服務條款(請點選參閱全文)及Yahoo Taiwan電子商務隱私權保護政策(請點選參閱全文)進行更新,當您繼續使用本公司電子商務服務,即表示您同意並接受更新後之「Yahoo Taiwan電子商務服務條款」及「Yahoo Taiwan電子商務隱私權保護政策」。
如有任何問題,請洽詢本公司客服:https://tw.help.yahoo.com/kb/SLN36801.html
香港商雅虎資訊股份有限公司台灣分公司
經理人:Peter Nac Wong (黃吉樂)
看起來已被統一集團併購完成了. 根據服務條款中的內容, 包含以下服務:
Yahoo購物中心、Yahoo購物中心商店、Yahoo中古車及Yahoo拍賣等在內的電子商務服務
請參閱相關新聞:
之前介紹了使用 Cloudflare worker來進行客戶端 IP調查的小程式(https://diary.tw/archives/2182), 最近新增一些功能上來.
{
"geoplugin_request":"12.34.56.78",
"geoplugin_status":200,
"geoplugin_delay":"1ms",
"geoplugin_credit":"Some of the returned data includes GeoLite2 data created by MaxMind, available from <a href='https:\/\/www.maxmind.com'>https:\/\/www.maxmind.com<\/a>.",
"geoplugin_city":"New Taipei City",
"geoplugin_region":"New Taipei City",
"geoplugin_regionCode":"NWT",
"geoplugin_regionName":"New Taipei City",
"geoplugin_areaCode":"",
"geoplugin_dmaCode":"",
"geoplugin_countryCode":"TW",
"geoplugin_countryName":"Taiwan",
"geoplugin_inEU":0,
"geoplugin_euVATrate":false,
"geoplugin_continentCode":"AS",
"geoplugin_continentName":"Asia",
"geoplugin_latitude":"24.9466",
"geoplugin_longitude":"121.586",
"geoplugin_locationAccuracyRadius":"20",
"geoplugin_timezone":"Asia\/Taipei",
"geoplugin_currencyCode":"TWD",
"geoplugin_currencySymbol":"NT$",
"geoplugin_currencySymbol_UTF8":"NT$",
"geoplugin_currencyConverter":32.0408
}
請大家多加利用 IP查找小功具: https://ip.diary.tw
[2026/5/30 10:36]
由於原來的 ip geolocation service 已變成只有付費方案了如下:
{
"geoplugin_status":403,
"geoplugin_message": "geoPlugin API is no longer available for free use. To continue access, please upgrade to a paid plan",
"geoplugin_url": "https://www.geoplugin.com/subscription"
}
所以改用仍有 free tier 的另一個服務: https://ipgeolocation.io/, 免費就有一定的使用量可供應用, API 也簡單, 只需要註冊帳戶, 就可以拿 API Token 去訪問取得資訊, API 使用方式請參考:
https://ipgeolocation.io/documentation/ip-location-api.html
調整一下程式碼, 之後訪問 https://ip.diary.tw/?data=geo 時, 就可以拿到對應的回傳結果如下:
{
"ip": "12.34.56.78",
"location": {
"continent_code": "AS",
"continent_name": "Asia",
"country_code2": "TW",
"country_code3": "TWN",
"country_name": "Taiwan",
"country_name_official": "Republic of China",
"country_capital": "Taipei",
"state_prov": "New Taipei City",
"state_code": "TW-NWT",
"district": "Banqiao District",
"city": "New Taipei City",
"zipcode": "231",
"latitude": "24.97828",
"longitude": "121.53948",
"is_eu": false,
"country_flag": "https://ipgeolocation.io/static/flags/tw_64.png",
"geoname_id": "11697228",
"country_emoji": "🇹🇼"
},
"country_metadata": {
"calling_code": "+886",
"tld": ".tw",
"languages": [
"zh-TW",
"zh",
"nan",
"hak"
]
},
"currency": {
"code": "TWD",
"name": "New Taiwan Dollar",
"symbol": "NT$"
},
"asn": {
"as_number": "AS38841",
"organization": "kbro CO. Ltd.",
"country": "TW"
},
"time_zone": {
"name": "Asia/Taipei",
"offset": 8,
"offset_with_dst": 8,
"current_time": "2026-05-30 10:34:55.910+0800",
"current_time_unix": 1780108495.91,
"current_tz_abbreviation": "CST",
"current_tz_full_name": "Taipei Standard Time",
"standard_tz_abbreviation": "CST",
"standard_tz_full_name": "Taipei Standard Time",
"is_dst": false,
"dst_savings": 0,
"dst_exists": false,
"dst_tz_abbreviation": "",
"dst_tz_full_name": "",
"dst_start": {},
"dst_end": {}
}
}
資訊更多元更豐富了, 歡迎多加利用.