如何获取Instagram视频的视频高度和宽度?

时间:2016-11-29 08:03:58

标签: javascript php jquery

有没有办法在不使用Instagram的API的情况下获取 Instagram 视频的视频高度宽度

Instagram 视频示例:https://www.instagram.com/p/BMB8fWIjcLT/embed/

1 个答案:

答案 0 :(得分:2)

/ media /< media-id> API端点将在响应中为您提供高度和重量。来自https://www.instagram.com/developer/endpoints/media/

{
    "data": {
        "type": "video",
        "videos": {
            "low_resolution": {
                "url": "http://distilleryvesper9-13.ak.instagram.com/090d06dad9cd11e2aa0912313817975d_102.mp4",
                "width": 480,
                "height": 480
            },
            "standard_resolution": {
                "url": "http://distilleryvesper9-13.ak.instagram.com/090d06dad9cd11e2aa0912313817975d_101.mp4",
                "width": 640,
                "height": 640
            },
            ...
        },
        ...
    }
}