get_random_wallpaper
Retrieve a random wallpaper URL with title and description from Bing Wallpapers, allowing customization of resolution and regional market settings.
Instructions
从Bing壁纸获取随机壁纸,返回壁纸的URL、标题和描述信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
market | No | 地区市场,如zh-CN(中国), en-US(美国)等,默认为zh-CN | |
resolution | No | 壁纸分辨率,可选值:1920x1080, 3840x2160, 1366x768等,默认为1920x1080 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"market": {
"description": "地区市场,如zh-CN(中国), en-US(美国)等,默认为zh-CN",
"type": "string"
},
"resolution": {
"description": "壁纸分辨率,可选值:1920x1080, 3840x2160, 1366x768等,默认为1920x1080",
"type": "string"
}
},
"type": "object"
}