且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

检索API Instagram的视频嵌入网址

更新时间:2023-01-02 22:40:00

根据的Instagram的API网站一个 GET /媒体/媒体-ID 请求视频对象返回与您在data.videos.low_resolution.url所需信息的JSON对象。

According to Instagram's API site a GET /media/media-id request for a video object returns a JSON object with the information you need in "data.videos.low_resolution.url".

我成功地嵌入其样品的要求有以下code返回到网页视频:

I successfully embedded the video returned by their sample request into a web page with the following code:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Video Embed Test</title>
  </head>
  <body>
    <video width="480" height="480" controls>
    <source src="http://distilleryvesper9-13.ak.instagram.com/090d06dad9cd11e2aa0912313817975d_102.mp4" 
      type="video/mp4"/>
    </video>
  </body>
</html>