用於從 Bing.com 取得每日壁紙的 RESTful API
HTTP GET
format
回應格式,可以是json
或image
。如果回應格式設定為image
,您將直接重新導向至桌布圖片。image_format
壁紙圖片的格式,可用值為jpg
或webp
。預設值為jpg
。index
壁紙1
索引,從0 0
。或者您可以將其指定為random
以選擇 0 到 7 之間的隨機索引。mkt
區域參數,預設值為zh-CN
,也可以使用en-US
, ja-JP
, en-AU
, en-GB
, de-DE
, en-NZ
, en-CA
。或者,您可以將其設定為random
以隨機選擇區域。resolution
壁紙影像的解析度。 1920
是預設值,您也可以使用1366
和3840
或UHD
(4K 解析度)。下面列出了可用的解析度選項:
UHD
1920x1200
1920x1080
1366x768
1280x768
1024x768
800x600
800x480
768x1280 (Portrait mode)
720x1280 (Portrait mode)
640x480
480x800 (Portrait mode)
400x240
320x240
240x320 (Portrait mode)
https://bing.biturl.top/?resolution=UHD&format=json&index=0&mkt=zh-CN
{
"start_date" : " 20240803 " ,
"end_date" : " 20240804 " ,
"url" : " https://www.bing.com/th?id=OHR.ImpalaOxpecker_ZH-CN9652434873_UHD.jpg " ,
"copyright" : "黑斑羚和红嘴牛椋鸟,南非 (© Matrishva Vyas/Getty Images) " ,
"copyright_link" : " https://www.bing.com/search?q=%E5%8F%8B%E8%B0%8A%E6%97%A5&form=hpcapt&mkt=zh-cn "
}
您也可以使用此 API 設定 CSS 背景圖片:
background-image: url(https://bing.biturl.top/?resolution=1920&format=image&index=0&mkt=zh-CN);
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
示範
https://biturl.top
取得最新版本的 docker 映像:
docker pull timothyye/bing:latest
使用鏡像名稱和標籤(YYYYMMDD 或最新)啟動容器,例如:
docker run -d --name=bing-wallpaper --restart=always -p 9000:9000 timothyye/bing:latest
git clone https://github.com/TimothyYe/bing-wallpaper.git
make build
bw/bw run