在上一篇文章中//www.greatytc.com/p/4f82fea66004,我们已经获得了同一标签下所有帖子的shortcode,那么接下来我们便利用这些shortcode构造url,获取帖子中的所有图片。
首先利用shortcode构造url
url = 'https://www.instagram.com/graphql/query/?query_hash=477b65a610463740ccdb83135b2014db&shortcode=' + shortcode
通过json库进行解析
res = requests.get(url, headers=headers).text
ins_data = json.loads(res)