addedOutput schema / properties / images
Added value: +{
+ "description": "图片列表,包含链接及宽高;无图时为空数组。",
+ "items": {
+ "properties": {
+ "height": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "图片高度,像素;不可用时为 null。"
+ },
+ "url": {
+ "description": "图片链接。",
+ "type": "string"
+ },
+ "width": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "图片宽度,像素;不可用时为 null。"
+ }
+ },
+ "required": [
+ "url",
+ "width",
+ "height"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
changedOutput schema / properties / video / anyOf
Previous value: -[
- {
- "properties": {
- "cover_image_url": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "视频封面图链接;不可用时为 null。"
- },
- "duration_ms": {
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "description": "视频时长,单位毫秒;不可用时为 null。"
- },
- "orientation": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "视频方向信息;不可用时为 null。"
- },
- "title": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "视频标题;不可用时为 null。"
- },
- "video_id": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "微博视频 ID;不可用时为 null。"
- },
- "video_page_url": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "微博视频页面链接;不可用时为 null。"
- },
- "video_url": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "视频播放链接;不可用时为 null。"
- }
- },
- "required": [
- "video_page_url",
- "title",
- "video_id",
- "duration_ms",
- "video_url",
- "cover_image_url",
- "orientation"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "properties": {
+ "cover_image_url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频封面图链接;不可用时为 null。"
+ },
+ "duration_ms": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频时长,单位毫秒;不可用时为 null。"
+ },
+ "height": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频像素高度;不可用时为 null。"
+ },
+ "orientation": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频方向信息;不可用时为 null。"
+ },
+ "title": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频标题;不可用时为 null。"
+ },
+ "video_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "微博视频 ID;不可用时为 null。"
+ },
+ "video_page_url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "微博视频页面链接;不可用时为 null。"
+ },
+ "video_url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频播放链接;不可用时为 null。"
+ },
+ "width": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频像素宽度;不可用时为 null。"
+ }
+ },
+ "required": [
+ "video_page_url",
+ "title",
+ "video_id",
+ "duration_ms",
+ "video_url",
+ "cover_image_url",
+ "orientation",
+ "width",
+ "height"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / required
Previous value: -[
- "post_id",
- "content",
- "publish_time",
- "post_url",
- "like_count",
- "comment_count",
- "repost_count",
- "play_count",
- "image_urls",
- "topic_tags",
- "author",
- "video",
- "points"
-]New value: +[
+ "post_id",
+ "content",
+ "publish_time",
+ "post_url",
+ "like_count",
+ "comment_count",
+ "repost_count",
+ "play_count",
+ "image_urls",
+ "images",
+ "topic_tags",
+ "author",
+ "video",
+ "points"
+]