资讯图片组-详情

根据资讯图片组id获取组内图片列表及组详情

接口地址(URI):/api/group/detail

HTTP请求方式:GET

请求参数:
请求值字段 必选 类型 说明
id true string 图片组的编号
page false integer 第几页,仅支持输入数字. 默认值 1
page_size false integer 每页数量.默认300.不能超过500.
返回参数:
返回字段 说明
group_id 图片组的编号
group_title 图片组的标题
group_caption 图片组的图说
total_count 图片组图片数
first_pic_res_id 图片组的封面-图片编号
channel_id 组照所属频道-数值 eg:"220634,234844"
small_url_https 图片组的封面图小图地址 (尺寸:长边176 https链接)
preview_url_https 图片组的封面图预览地址 (尺寸:长边400 https链接)
list 图片组包含的图片数据列表
res_id 图片编号
credit_line 图片的署名
caption 图片的说明
width 图片的原图宽度
height 图片的原图高度
upload_time 图片的上传时间
small_url_https 预览图片地址(尺寸:长边176 https链接)
review_url_https 预览图片地址(尺寸:长边400 https链接)
请求参数示例example value:
Curl:
curl -X GET --header 'Accept: application/json' --header 'api-key: xxxxxxxxxxxxxxxxxxxxxxxx' --header 'authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' 'https://api.fotomore.com/api/group/detail?id=522079501&page=1&page_size=300'
Request URL:
https://api.fotomore.com/api/group/detail?id=522079501&page=1&page_size=300
返回数据示例example value:
{
    "status_code": 1,
    "message": "ok",
    "data": {
        "group_id": "522079501",
        "group_title": "2022马来西亚羽毛球大师赛女单1/8决赛:王祉怡1-2山口茜",
        "group_caption": "2022年7月7日,马来西亚,2022马来西亚羽毛球大师赛女单1/8决赛,王祉怡1-2山口茜。",
        "total_count": 10,
        "first_pic_res_id": "VCG31N1407240303",
        "channel_id": "220637",
        "small_url_https": "https://photo-static-api.fotomore.com/editorial/vcg/176/new/VCG31N1407240303.jpg?uid=484&timestamp=1708507890&sign=ab3dcb3eb8fc8c5a9d4bf323dc22f47f",
        "preview_url_https": "https://photo-static-api.fotomore.com/editorial/vcg/400/new/VCG31N1407240303.jpg?uid=484&timestamp=1708507890&sign=ab3dcb3eb8fc8c5a9d4bf323dc22f47f",
        "list": [
            {
                "res_id": "VCG31N1407240303",
                "credit_line": "How Foo Yeen/视觉中国",
                "caption": "2022年7月7日,马来西亚,2022马来西亚羽毛球大师赛7月7日赛况。 王祉怡在比赛中救球\nKUALA LUMPUR, MALAYSIA - JULY 07: Wang Zhi Yi of China in action against Akane Yamaguchi of Japan in their women's singles on day three of the Perodua Malaysia Masters at Axiata Arena on July 07, 2022 in Kuala Lumpur, Malaysia. (Photo by How Foo Yeen/Getty Images)",
                "width": 3000,
                "height": 2000,
                "upload_time": "2022-07-07 13:59:07",
                "small_url_https": "https://photo-static-api.fotomore.com/editorial/vcg/176/new/VCG31N1407240303.jpg?uid=484&timestamp=1708507890&sign=ab3dcb3eb8fc8c5a9d4bf323dc22f47f",
                "preview_url_https": "https://photo-static-api.fotomore.com/editorial/vcg/400/new/VCG31N1407240303.jpg?uid=484&timestamp=1708507890&sign=ab3dcb3eb8fc8c5a9d4bf323dc22f47f"
            },
            ......
            {
                "res_id": "VCG31N1407239005",
                "credit_line": "How Foo Yeen/视觉中国",
                "caption": "2022年7月7日,马来西亚,2022马来西亚羽毛球大师赛7月7日赛况。 KUALA LUMPUR, MALAYSIA - JULY 07: Akane Yamaguchi of Japan in action against Wang Zhi Yi of China in their women's singles on day three of the Perodua Malaysia Masters at Axiata Arena on July 07, 2022 in Kuala Lumpur, Malaysia. (Photo by How Foo Yeen/Getty Images)",
                "width": 3000,
                "height": 2000,
                "upload_time": "2022-07-07 13:57:07",
                "small_url_https": "https://photo-static-api.fotomore.com/editorial/vcg/176/new/VCG31N1407239005.jpg?uid=484&timestamp=1708507890&sign=ab3dcb3eb8fc8c5a9d4bf323dc22f47f",
                "preview_url_https": "https://photo-static-api.fotomore.com/editorial/vcg/400/new/VCG31N1407239005.jpg?uid=484&timestamp=1708507890&sign=ab3dcb3eb8fc8c5a9d4bf323dc22f47f"
            }
        ]
    }
}