Youtube、Facebook、Insgram三平台数据获取方式之前篇

  • Post author:
  • Post category:其他




Youtube、Facebook、Insgram三平台数据获取方式之前篇

​ 本篇文章主要介绍项目背景和最终实现效果,每个平台具体的操作方式请自行选择观看。

提前说明:每个平台仅获取视频相关信息并不涉及下载相关,请选择阅读。其中,youtube使用官方API操作完成,Facebook及Ins使用爬虫调用接口完成。

2020-06-04 更新

现已更新代码到GitHub,具体细节请参考具体文章中的介绍


GitHub地址



项目背景介绍

​ 最近在做一个资讯类App,在某版本中的一个需求中想要达到如下效果:

  1. 输入一个频道的url可以获取其下所有历史视频记录(如下举例) 。

    YouTube : https://www.youtube.com/channel/UCxcuxsAjdnQaiRwYb5CVISw)

    Facebook :https://www.facebook.com/watch/trizkiananda/

    Insgram : https://www.instagram.com/mobil1/

  2. 输入一个视频的url可以获取其视频信息。

  3. 根据已经输入的频道地址,每日获取其最近更新的视频(订阅功能)。

  4. 根据获取到的视频信息、视频地址在系统内播放。

​ 以上的要求作用于Youtube、Facebook、Insgram三个平台之上。

基于这些需求,需要实现这三个平台的爬虫程序。由于在本项目中并不需要实际将视频下载下来,只需要获取视频的信息(如:标题、分类、作者信息、简介、标签、上传时间等等,用于业务上的使用)和视频链接(使用iframe包装实现在自己的页面里实现引用)。



效果展示



页面展示效果



链接引用格式

具体每个平台的iframe引用格式后续单平台中都会给出。



管理后台相关



频道管理



播放列表管理



视频管理



相关文章跳转:




Youtube数据获取



Facebook数据获取



Ins数据获取



各平台使用到的参数参考



Youtube

{
  "kind": "youtube#video",
  "etag": etag,
  "id": string,
  "snippet": {
    "publishedAt": datetime,
    "channelId": string,
    "title": string,
    "description": string,
    "thumbnails": {
      (key): {
        "url": string,
        "width": unsigned integer,
        "height": unsigned integer
      }
    },
    "channelTitle": string,
    "tags": [
      string
    ],
    "categoryId": string,
    "liveBroadcastContent": string,
    "defaultLanguage": string,
    "localized": {
      "title": string,
      "description": string
    },
    "defaultAudioLanguage": string
  },
  "contentDetails": {
    "duration": string,
    "dimension": string,
    "definition": string,
    "caption": string,
    "licensedContent": boolean,
    "regionRestriction": {
      "allowed": [
        string
      ],
      "blocked": [
        string
      ]
    },
    "contentRating": {
      "acbRating": string,
      "agcomRating": string,
      "anatelRating": string,
      "bbfcRating": string,
      "bfvcRating": string,
      "bmukkRating": string,
      "catvRating": string,
      "catvfrRating": string,
      "cbfcRating": string,
      "cccRating": string,
      "cceRating": string,
      "chfilmRating": string,
      "chvrsRating": string,
      "cicfRating": string,
      "cnaRating": string,
      "cncRating": string,
      "csaRating": string,
      "cscfRating": string,
      "czfilmRating": string,
      "djctqRating": string,
      "djctqRatingReasons": [,
        string
      ],
      "ecbmctRating": string,
      "eefilmRating": string,
      "egfilmRating": string,
      "eirinRating": string,
      "fcbmRating": string,
      "fcoRating": string,
      "fmocRating": string,
      "fpbRating": string,
      "fpbRatingReasons": [,
        string
      ],
      "fskRating": string,
      "grfilmRating": string,
      "icaaRating": string,
      "ifcoRating": string,
      "ilfilmRating": string,
      "incaaRating": string,
      "kfcbRating": string,
      "kijkwijzerRating": string,
      "kmrbRating": string,
      "lsfRating": string,
      "mccaaRating": string,
      "mccypRating": string,
      "mcstRating": string,
      "mdaRating": string,
      "medietilsynetRating": string,
      "mekuRating": string,
      "mibacRating": string,
      "mocRating": string,
      "moctwRating": string,
      "mpaaRating": string,
      "mpaatRating": string,
      "mtrcbRating": string,
      "nbcRating": string,
      "nbcplRating": string,
      "nfrcRating": string,
      "nfvcbRating": string,
      "nkclvRating": string,
      "oflcRating": string,
      "pefilmRating": string,
      "rcnofRating": string,
      "resorteviolenciaRating": string,
      "rtcRating": string,
      "rteRating": string,
      "russiaRating": string,
      "skfilmRating": string,
      "smaisRating": string,
      "smsaRating": string,
      "tvpgRating": string,
      "ytRating": string
    },
    "projection": string,
    "hasCustomThumbnail": boolean
  },
  "status": {
    "uploadStatus": string,
    "failureReason": string,
    "rejectionReason": string,
    "privacyStatus": string,
    "publishAt": datetime,
    "license": string,
    "embeddable": boolean,
    "publicStatsViewable": boolean,
    "madeForKids": boolean,
    "selfDeclaredMadeForKids": boolean
  },
  "statistics": {
    "viewCount": unsigned long,
    "likeCount": unsigned long,
    "dislikeCount": unsigned long,
    "favoriteCount": unsigned long,
    "commentCount": unsigned long
  },
  "player": {
    "embedHtml": string,
    "embedHeight": long,
    "embedWidth": long
  },
  "topicDetails": {
    "topicIds": [
      string
    ],
    "relevantTopicIds": [
      string
    ],
    "topicCategories": [
      string
    ]
  },
  "recordingDetails": {
    "recordingDate": datetime
  },
  "fileDetails": {
    "fileName": string,
    "fileSize": unsigned long,
    "fileType": string,
    "container": string,
    "videoStreams": [
      {
        "widthPixels": unsigned integer,
        "heightPixels": unsigned integer,
        "frameRateFps": double,
        "aspectRatio": double,
        "codec": string,
        "bitrateBps": unsigned long,
        "rotation": string,
        "vendor": string
      }
    ],
    "audioStreams": [
      {
        "channelCount": unsigned integer,
        "codec": string,
        "bitrateBps": unsigned long,
        "vendor": string
      }
    ],
    "durationMs": unsigned long,
    "bitrateBps": unsigned long,
    "creationTime": string
  },
  "processingDetails": {
    "processingStatus": string,
    "processingProgress": {
      "partsTotal": unsigned long,
      "partsProcessed": unsigned long,
      "timeLeftMs": unsigned long
    },
    "processingFailureReason": string,
    "fileDetailsAvailability": string,
    "processingIssuesAvailability": string,
    "tagSuggestionsAvailability": string,
    "editorSuggestionsAvailability": string,
    "thumbnailsAvailability": string
  },
  "suggestions": {
    "processingErrors": [
      string
    ],
    "processingWarnings": [
      string
    ],
    "processingHints": [
      string
    ],
    "tagSuggestions": [
      {
        "tag": string,
        "categoryRestricts": [
          string
        ]
      }
    ],
    "editorSuggestions": [
      string
    ]
  },
  "liveStreamingDetails": {
    "actualStartTime": datetime,
    "actualEndTime": datetime,
    "scheduledStartTime": datetime,
    "scheduledEndTime": datetime,
    "concurrentViewers": unsigned long,
    "activeLiveChatId": string
  },
  "localizations": {
    (key): {
      "title": string,
      "description": string
    }
  }
}



Facebook

{
                  "node": {
                     "feed_unit": {
                        "__typename": "Story",
                        "encrypted_tracking": "AZXEE5O8968hCDtD45bKr8_bEC9tAx3zqsK_kJIrJhmW1w42c3iusdiE80JBwRFb3sgXrW8a6nf3peXAr3A-BLw9jT2JnIBm4oR3GYB_xEeCf0NmmR8bBcLxqBnZPfu7Pi0TPeWHg3a6_xxd0-foKaGEakmo4UcXhw5Rh3dVau--bnn11S2NPpyxWcUw6HNS54qIXVpWUc2bY_5gJH-PZ_3t30eXxdGNzQUbdVheltiamHfs1kws89-Lo3JRZOHU3MjEeAWY6cMmxiSDHemiYfCpR3EEELUOdMeAhVZhxGwO8g5khN735UvZhvlbfGmYuJGlj5OoPqvsWqdjTHGzAbe4Yx5oEizlcN-58JZTwcDKLjmWoIi3DBXC57c_olobpwm2fNirN_fKFcB6EADK5jThWuk9CgbXCXLHdmNEFibYiSu5Q8H8v04PV9B7mF40XugjurYsfDa95R_cMbS7NGIBH7yA2RsRy_FcwFM9ffydhzcKWXnGeykhZd6tvp1t_V60b3JO7MeoWPY8N0vOPrtTPJnKn9qdIJjShj69CIzY5uXWv4boJO2hKFsN5w7EBaBRy6l7T5o9K4Zdvppzci-dnOVOfKy4YDHNvZir64b2e6ORkdJKdEd9NqwnGZn-yLNI95BdYRjfMvaCmZPkuH5kLAcJQcVh5RkkdP_48BJI6MZQj5HOwGdKN1zPt5CZV72NZaOvCljYsdXw9zca2YlK1oFGSL64ZyJyBgk_s6b_WlBbrKxC4MEMK4f20ChvQfFLitERYc-AhPgUrC49oWFWF-6BZ_kZaavniBeymiMfmfsB7reWM0mAMCMlp8OEU5BHZKiVABzrf1U3CDTCtnzXX47E1N4vf50cpMmFunVihJb0OMXOrgBWwKSC0W09vMCoQTpXfniFejquUtixd2dYFpmRVXuw9Gu06EQJA2YW1MHvdUtkeqzmj8RcBl0J32gNB-0lesRFZpCMAtAWxF0safg_kHYPvBK-RIp_wTk5iaSSKDeYNaWXS_DFaHLHu6j4FGj3lUk448u3lAzuoxxv",
                        "viewability_config": [
                           8,
                           5
                        ],
                        "attachments": [
                           {
                              "media": {
                                 "__typename": "Video",
                                 "publish_time": 1532093178,
                                 "container_story": null,
                                 "play_count": 32,
                                 "total_posts": 1,
                                 "post_play_count": 32,
                                 "feedback": {
                                    "id": "ZmVlZGJhY2s6MjQ5MDAxNjkyMzY3OTYz",
                                    "top_reactions": {
                                       "edges": [
                                          {
                                             "i18n_reaction_count": "13",
                                             "node": {
                                                "localized_name": "\u3044\u3044\u306d\uff01",
                                                "reaction_type": "LIKE",
                                                "id": "1635855486666999"
                                             }
                                          }
                                       ]
                                    },
                                    "i18n_reaction_count": "13",
                                    "important_reactors": {
                                       "nodes": [
                                          
                                       ]
                                    },
                                    "reaction_count": {
                                       "count": 13
                                    },
                                    "viewer_actor": null,
                                    "viewer_feedback_reaction_info": null
                                 },
                                 "id": "249001692367963",
                                 "image": {
                                    "uri": "https://scontent-nrt1-1.xx.fbcdn.net/v/t15.5256-10/s640x640/36024470_249002852367847_4933958855123009536_n.jpg?_nc_cat=104&_nc_ohc=yntPhtXUIwwAX8l-V6I&_nc_ht=scontent-nrt1-1.xx&oh=0c115c662b07613f4994c37ac8307cb3&oe=5E8E3423"
                                 },
                                 "has_viewer_watched_show_video": false,
                                 "is_live_streaming": false,
                                 "url": "https://www.facebook.com/JIMSKO07/videos/249001692367963/",
                                 "video_channel": {
                                    "__typename": "VirtualVideosChannel",
                                    "id": "dmlkZW9DaGFubmVsOjM4NzQzNzg4ODEwNjMwMToyNDkwMDE2OTIzNjc5NjM="
                                 },
                                 "owner": {
                                    "__typename": "Page",
                                    "id": "210402066227926",
                                    "name": "Racing jaya"
                                 },
                                 "is_show_video": false,
                                 "playable_duration_in_ms": 58942,
                                 "viewer_last_play_position_ms": null,
                                 "broadcast_status": null,
                                 "smart_preview_video": {
                                    "id": "249003012367831",
                                    "original_width": 400,
                                    "original_height": 224,
                                    "broadcaster_origin": null,
                                    "broadcast_status": null,
                                    "is_live_streaming": false,
                                    "is_looping": true,
                                    "loop_count": 23,
                                    "is_spherical": false,
                                    "permalink_url": "https://www.facebook.com/JIMSKO07/videos/249003012367831/",
                                    "captions_url": null,
                                    "dash_prefetch_experimental": [
                                       "478219935963026v"
                                    ],
                                    "can_use_oz": true,
                                    "playable_url_dash": "https://www.facebook.com/video/playback/dash_mpd_debug.mpd?v=249003012367831&dummy=.mpd",
                                    "dash_manifest": "\u003C?xml version=\"1.0\"?>\n\u003CMPD xmlns=\"urn:mpeg:dash:schema:mpd:2011\" minBufferTime=\"PT1.500S\" type=\"static\" mediaPresentationDuration=\"PT0H0M4.000S\" maxSegmentDuration=\"PT0H0M2.000S\" profiles=\"urn:mpeg:dash:profile:isoff-on-demand:2011,http://dashif.org/guidelines/dash264\">\u003CPeriod duration=\"PT0H0M4.000S\">\u003CAdaptationSet segmentAlignment=\"true\" maxWidth=\"400\" maxHeight=\"224\" maxFrameRate=\"30\" par=\"400:224\" lang=\"und\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\">\u003CRepresentation id=\"478219935963026v\" mimeType=\"video/mp4\" codecs=\"avc1.64000D\" width=\"400\" height=\"224\" frameRate=\"30\" sar=\"1:1\" startWithSAP=\"1\" bandwidth=\"364906\" FBEncodingTag=\"dash_v4_passthrough_frag_2_video\" FBPlaybackResolutionMos=\"0:100,225:100,360:100,480:100,720:100,1080:100\" FBPlaybackResolutionMosConfidenceLevel=\"high_passthrough\" FBAbrPolicyTags=\"\" FBDefaultQuality=\"1\" FBQualityClass=\"sd\" FBQualityLabel=\"Source\">\u003CBaseURL>https://video-nrt1-1.xx.fbcdn.net/v/t42.1790-2/37319888_478219949296358_8491347577680166912_n.mp4?_nc_cat=110&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfcGFzc3Rocm91Z2hfZnJhZ18yX3ZpZGVvIn0\u00253D&_nc_ohc=tCB7tpaKhycAX_FjEoQ&_nc_ht=video-nrt1-1.xx&oh=0de47837c4b2e6078ca5c79d64c9081c&oe=5E3C183E\u003C/BaseURL>\u003CSegmentBase indexRangeExact=\"true\" indexRange=\"912-967\" FBFirstSegmentRange=\"968-79460\">\u003CInitialization range=\"0-911\"/>\u003C/SegmentBase>\u003C/Representation>\u003C/AdaptationSet>\u003C/Period>\u003C/MPD>\n",
                                    "min_quality_preference": null,
                                    "playable_url": "https://video-nrt1-1.xx.fbcdn.net/v/t42.9040-2/37336605_1918152674896299_3659291460219437056_n.mp4?_nc_cat=102&efg=eyJybHIiOjQ4MiwicmxhIjo1MTIsInZlbmNvZGVfdGFnIjoic3ZlX3NkIn0\u00253D&_nc_ohc=7d0azLXhnQ0AX_vzIna&rl=482&vabr=268&_nc_ht=video-nrt1-1.xx&oh=5af3084da685165f2e262235a381d20d&oe=5E3C13BC",
                                    "playable_url_quality_hd": null,
                                    "autoplay_gating_result": "gatekeeper",
                                    "viewer_autoplay_setting": "default_autoplay",
                                    "can_autoplay": false,
                                    "drm_info": "{\"drm_helper\":null,\"video_license_uri_map\":{},\"graph_api_video_license_uri\":null,\"widevine_cert\":\"CsECCAMSEBcFuRfMEgSGiwYzOi93KowYgrSCkgUijgIwggEKAoIBAQCZ7Vs7Mn2rXiTvw7YqlbWYUgrVvMs3UD4GRbgU2Ha430BRBEGtjOOtsRu4jE5yWl5KngeVKR1YWEAjp+GvDjipEnk5MAhhC28VjIeMfiG\\/+\\/7qd+EBnh5XgeikX0YmPRTmDoBYqGB63OBPrIRXsTeo1nzN6zNwXZg6IftO7L1KEMpHSQykfqpdQ4IY3brxyt4zkvE9b\\/tkQv0x4b9AsMYE0cS6TJUgpL+X7r1gkpr87vVbuvVk4tDnbNfFXHOggrmWEguDWe3OJHBwgmgNb2fG2CxKxfMTRJCnTuw3r0svAQxZ6ChD4lgvC2ufXbD8Xm7fZPvTCLRxG88SUAGcn1oJAgMBAAE6FGxpY2Vuc2Uud2lkZXZpbmUuY29tEoADrjRzFLWoNSl\\/JxOI+3u4y1J30kmCPN3R2jC5MzlRHrPMveoEuUS5J8EhNG79verJ1BORfm7BdqEEOEYKUDvBlSubpOTOD8S\\/wgqYCKqvS\\/zRnB3PzfV0zKwo0bQQQWz53ogEMBy9szTK\\/NDUCXhCOmQuVGE98K\\/PlspKkknYVeQrOnA+8XZ\\/apvTbWv4K+drvwy6T95Z0qvMdv62Qke4XEMfvKUiZrYZ\\/DaXlUP8qcu9u\\/r6DhpV51Wjx7zmVflkb1gquc9wqgi5efhn9joLK3\\/bNixbxOzVVdhbyqnFk8ODyFfUnaq3fkC3hR3f0kmYgI41sljnXXjqwMoW9wRzBMINk+3k6P8cbxfmJD4\\/Paj8FwmHDsRfuoI6Jj8M76H3CTsZCZKDJjM3BQQ6Kb2m+bQ0LMjfVDyxoRgvfF\\/\\/M\\/EEkPrKWyU2C3YBXpxaBquO4C8A0ujVmGEEqsxN1HX9lu6c5OMm8huDxwWFd7OHMs3avGpr7RP7DUnTikXrh6X0\"}",
                                    "captions_settings": null
                                 },
                                 "playable_duration": 59,
                                 "live_viewer_count_read_only": 0,
                                 "breaking_status": false,
                                 "is_premiere": false,
                                 "is_subscribed_to_live_video_schedule": false,
                                 "broadcast_schedule": null,
                                 "name": "",
                                 "savable_description": {
                                    "text": "",
                                    "image_ranges": [
                                       
                                    ],
                                    "inline_style_ranges": [
                                       
                                    ],
                                    "aggregated_ranges": [
                                       
                                    ],
                                    "ranges": [
                                       
                                    ]
                                 },
                                 "playlist_video_channel": {
                                    "__typename": "Page",
                                    "id": "210402066227926"
                                 },
                                 "video_view_model": {
                                    "episode_number": null
                                 },
                                 "sotto_content": null
                              }
                           }
                        ],
                        "attached_story": null,
                        "id": "UzpfSTIxMDQwMjA2NjIyNzkyNjpWSzoyNDkwMDE2OTIzNjc5NjM="
                     },
                     "__typename": "VideoHomeFeedUnitSectionComponent"
                  },
                  "cursor": null
               }



Insgram

{
                        "node":{
                            "__typename":"GraphVideo",
                            "id":"2170031570784940044",
                            "dimensions":{
                                "height":937,
                                "width":750
                            },
                            "display_url":"https://scontent-nrt1-1.cdninstagram.com/v/t51.2885-15/e35/70288458_2432643487003298_7115159233566819988_n.jpg?_nc_ht=scontent-nrt1-1.cdninstagram.com&_nc_cat=102&_nc_ohc=RkkgrmnH-okAX8f6TBb&oh=7e53cbcd0d6a33827a95cb8007c8dc77&oe=5E474D82",
                            "display_resources":[
                                {
                                    "src":"https://scontent-nrt1-1.cdninstagram.com/v/t51.2885-15/sh0.08/e35/p640x640/70288458_2432643487003298_7115159233566819988_n.jpg?_nc_ht=scontent-nrt1-1.cdninstagram.com&_nc_cat=102&_nc_ohc=RkkgrmnH-okAX8f6TBb&oh=72313d4c22e9505298ae425b30132c6e&oe=5E47A728",
                                    "config_width":640,
                                    "config_height":800
                                },
                                {
                                    "src":"https://scontent-nrt1-1.cdninstagram.com/v/t51.2885-15/e35/70288458_2432643487003298_7115159233566819988_n.jpg?_nc_ht=scontent-nrt1-1.cdninstagram.com&_nc_cat=102&_nc_ohc=RkkgrmnH-okAX8f6TBb&oh=7e53cbcd0d6a33827a95cb8007c8dc77&oe=5E474D82",
                                    "config_width":750,
                                    "config_height":937
                                },
                                {
                                    "src":"https://scontent-nrt1-1.cdninstagram.com/v/t51.2885-15/e35/70288458_2432643487003298_7115159233566819988_n.jpg?_nc_ht=scontent-nrt1-1.cdninstagram.com&_nc_cat=102&_nc_ohc=RkkgrmnH-okAX8f6TBb&oh=7e53cbcd0d6a33827a95cb8007c8dc77&oe=5E474D82",
                                    "config_width":1080,
                                    "config_height":1350
                                }
                            ],
                            "is_video":true,
                            "tracking_token":"eyJ2ZXJzaW9uIjo1LCJwYXlsb2FkIjp7ImlzX2FuYWx5dGljc190cmFja2VkIjp0cnVlLCJ1dWlkIjoiZDdjYzBiZTcxNjIyNDYzMTkzNGQzZTEyYWNlNjI5ZGMyMTcwMDMxNTcwNzg0OTQwMDQ0In0sInNpZ25hdHVyZSI6IiJ9",
                            "edge_media_to_tagged_user":{
                                "edges":[

                                ]
                            },
                            "dash_info":{
                                "is_dash_eligible":false,
                                "video_dash_manifest":null,
                                "number_of_qualities":0
                            },
                            "video_url":"https://scontent-nrt1-1.cdninstagram.com/v/t50.2886-16/76813114_409612366399145_1408226497651154317_n.mp4?_nc_ht=scontent-nrt1-1.cdninstagram.com&_nc_cat=105&_nc_ohc=bGhTGNORuAMAX-9y27s&oe=5E47A857&oh=a8ad29e7b500491d489c70b5868a8253",
                            "video_view_count":66853,
                            "edge_media_to_caption":{
                                "edges":[
                                    {
                                        "node":{
                                            "text":"What’s more unconventional than free Hot Wheels from @magnuswalker? Find out at the Mobil 1™ booth at the @semashow on Wednesday from 1-2pm."
                                        }
                                    }
                                ]
                            },
                            "shortcode":"B4dgDdgBPAM",
                            "edge_media_to_comment":{
                                "count":16,
                                "page_info":{
                                    "has_next_page":true,
                                    "end_cursor":"QVFCYlNYRmVSWVlOUGFRU190blU2c3lIRDFnSml0STdheUFMSWRNT2cwVHlYa1lqN2NqeTNtQklRUEw4NlVzSlAwSjZwT0VZMkZJajRTdFdHbzY3ME9ReQ=="
                                },
                                "edges":[
                                    {
                                        "node":{
                                            "id":"18079791781084833",
                                            "text":"Bro wasn’t he in NFS 2015?",
                                            "created_at":1573097162,
                                            "did_report_as_spam":false,
                                            "owner":{
                                                "id":"9187362588",
                                                "is_verified":false,
                                                "profile_pic_url":"https://scontent-nrt1-1.cdninstagram.com/v/t51.2885-19/s150x150/50061151_2815951648422474_7341681516549767168_n.jpg?_nc_ht=scontent-nrt1-1.cdninstagram.com&_nc_ohc=KwAsM69livIAX8brNnT&oh=953e8cb1c6c8fdc85d12eb6c6a6a7781&oe=5EC22AEE",
                                                "username":"mr._shredtastic"
                                            },
                                            "viewer_has_liked":false
                                        }
                                    },
                                    {
                                        "node":{
                                            "id":"18079904509082859",
                                            "text":"I need that so bad !!!",
                                            "created_at":1573230058,
                                            "did_report_as_spam":false,
                                            "owner":{
                                                "id":"53918627",
                                                "is_verified":false,
                                                "profile_pic_url":"https://scontent-nrt1-1.cdninstagram.com/v/t51.2885-19/s150x150/36979131_208112720044452_8451014295717675008_n.jpg?_nc_ht=scontent-nrt1-1.cdninstagram.com&_nc_ohc=DFCoieCkNAoAX_MpLjJ&oh=5dc7892f52319c9469712048acc3418f&oe=5ED352FC",
                                                "username":"snipes74"
                                            },
                                            "viewer_has_liked":false
                                        }
                                    },
                                    {
                                        "node":{
                                            "id":"18107091289064729",
                                            "text":"Any other way to get that VW",
                                            "created_at":1573230092,
                                            "did_report_as_spam":false,
                                            "owner":{
                                                "id":"53918627",
                                                "is_verified":false,
                                                "profile_pic_url":"https://scontent-nrt1-1.cdninstagram.com/v/t51.2885-19/s150x150/36979131_208112720044452_8451014295717675008_n.jpg?_nc_ht=scontent-nrt1-1.cdninstagram.com&_nc_ohc=DFCoieCkNAoAX_MpLjJ&oh=5dc7892f52319c9469712048acc3418f&oe=5ED352FC",
                                                "username":"snipes74"
                                            },
                                            "viewer_has_liked":false
                                        }
                                    },
                                    {
                                        "node":{
                                            "id":"18069417481164690",
                                            "text":"@bananavw",
                                            "created_at":1573230807,
                                            "did_report_as_spam":false,
                                            "owner":{
                                                "id":"53918627",
                                                "is_verified":false,
                                                "profile_pic_url":"https://scontent-nrt1-1.cdninstagram.com/v/t51.2885-19/s150x150/36979131_208112720044452_8451014295717675008_n.jpg?_nc_ht=scontent-nrt1-1.cdninstagram.com&_nc_ohc=DFCoieCkNAoAX_MpLjJ&oh=5dc7892f52319c9469712048acc3418f&oe=5ED352FC",
                                                "username":"snipes74"
                                            },
                                            "viewer_has_liked":false
                                        }
                                    }
                                ]
                            },
                            "edge_media_to_sponsor_user":{
                                "edges":[

                                ]
                            },
                            "comments_disabled":false,
                            "taken_at_timestamp":1572908094,
                            "edge_media_preview_like":{
                                "count":1396,
                                "edges":[

                                ]
                            },
                            "gating_info":null,
                            "fact_check_overall_rating":null,
                            "fact_check_information":null,
                            "media_preview":"ACEqwJI2jba4wR2plSLGWGQM06GIyNgAnHpSKI8kVciuIY8HYzt3LNgfgAP5mpriMEFUHyrzx6DqazWXacUgehp/boP+eK/l/wDZUVl4oosBPGAxIycemauWa7ZeDtGDz/T059OKhjQdTyW6D/P+e/pVp38lFI4wBxx1/mf5UD3LjzJtMYUMzAjI6fnWAxIIPtV+TUC4wRn6mqDHJGPpTJDd7UVc8iL3/OikA8W5zkn8BUdyhP3jz+VacX8R9BxVG6+6PrRe49jM2kU5VJbA68U9utLB/rB9KoQux6KsUUh2P//Z",
                            "owner":{
                                "id":"4477364796",
                                "username":"mobil1"
                            },
                            "location":{
                                "id":"43168083",
                                "has_public_page":true,
                                "name":"The SEMA Show",
                                "slug":"the-sema-show"
                            },
                            "viewer_has_liked":false,
                            "viewer_has_saved":false,
                            "viewer_has_saved_to_collection":false,
                            "viewer_in_photo_of_you":false,
                            "viewer_can_reshare":true,
                            "thumbnail_src":"https://scontent-nrt1-1.cdninstagram.com/v/t51.2885-15/sh0.08/e35/c0.90.720.720a/s640x640/70288458_2432643487003298_7115159233566819988_n.jpg?_nc_ht=scontent-nrt1-1.cdninstagram.com&_nc_cat=102&_nc_ohc=RkkgrmnH-okAX8f6TBb&oh=17cc7d18c300e0338e3dbed3935030cf&oe=5E47626F",
                            "thumbnail_resources":[
                                {
                                    "src":"https://scontent-nrt1-1.cdninstagram.com/v/t51.2885-15/e35/c0.90.720.720a/s150x150/70288458_2432643487003298_7115159233566819988_n.jpg?_nc_ht=scontent-nrt1-1.cdninstagram.com&_nc_cat=102&_nc_ohc=RkkgrmnH-okAX8f6TBb&oh=f59e78ccc253a8f3d8bddef5be6071c3&oe=5E47C35B",
                                    "config_width":150,
                                    "config_height":150
                                },
                                {
                                    "src":"https://scontent-nrt1-1.cdninstagram.com/v/t51.2885-15/e35/c0.90.720.720a/s240x240/70288458_2432643487003298_7115159233566819988_n.jpg?_nc_ht=scontent-nrt1-1.cdninstagram.com&_nc_cat=102&_nc_ohc=RkkgrmnH-okAX8f6TBb&oh=9f59996063eca96cb1da90e3d27bcd43&oe=5E47C89D",
                                    "config_width":240,
                                    "config_height":240
                                },
                                {
                                    "src":"https://scontent-nrt1-1.cdninstagram.com/v/t51.2885-15/e35/c0.90.720.720a/s320x320/70288458_2432643487003298_7115159233566819988_n.jpg?_nc_ht=scontent-nrt1-1.cdninstagram.com&_nc_cat=102&_nc_ohc=RkkgrmnH-okAX8f6TBb&oh=6bf1a75f13db6b97916d88e732ee6c0f&oe=5E47C6E3",
                                    "config_width":320,
                                    "config_height":320
                                },
                                {
                                    "src":"https://scontent-nrt1-1.cdninstagram.com/v/t51.2885-15/e35/c0.90.720.720a/s480x480/70288458_2432643487003298_7115159233566819988_n.jpg?_nc_ht=scontent-nrt1-1.cdninstagram.com&_nc_cat=102&_nc_ohc=RkkgrmnH-okAX8f6TBb&oh=092766a015c7136dba05f5be0341e5fb&oe=5E474FA4",
                                    "config_width":480,
                                    "config_height":480
                                },
                                {
                                    "src":"https://scontent-nrt1-1.cdninstagram.com/v/t51.2885-15/sh0.08/e35/c0.90.720.720a/s640x640/70288458_2432643487003298_7115159233566819988_n.jpg?_nc_ht=scontent-nrt1-1.cdninstagram.com&_nc_cat=102&_nc_ohc=RkkgrmnH-okAX8f6TBb&oh=17cc7d18c300e0338e3dbed3935030cf&oe=5E47626F",
                                    "config_width":640,
                                    "config_height":640
                                }
                            ]
                        }
                    }



版权声明:本文为zzz_zjz原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。