gpt4 book ai didi

instagram - 如何使用 Instagram graphql?

转载 作者:行者123 更新时间:2023-12-04 17:19:26 30 4
gpt4 key购买 nike

我正在使用以下查询https://www.instagram.com/graphql/query/?query_id=17851374694183129&id={acountId}&first=1000&after={cursor}获得用户关注者。我需要的资料是followed_by_count仅每个用户可用的索引 https://www.instagram.com/{username}?__a=1
有没有query_id包括 followed_by_count结果呢?

最佳答案

query_id代码 https://www.instagram.com/graphql/query/?query_id=17851374694183129&id=<user_id>&first=1000&after=<end_cursor>旨在仅返回媒体数据,不包括用户配置文件数据。
最简单的解决方案是使用 IG 在初始页面请求上使用的内容:https://www.instagram.com/<ig_username>/?__a=1这是我的 RubyOnRails 设置:profile = JSON.parse(open("https://www.instagram.com/<ig_username>/?__a=1").read)...现在捕获你的变量:

profile.['graphql']['user']['profile_pic_url']

profile.['graphql']['user']['biography']

profile.['graphql']['user']['external_url']

profile.['graphql']['user']['edge_followed_by']['count']

profile.['graphql']['user']['edge_follow']['count']

profile.['graphql']['user']['id']

profile.['graphql']['user']['edge_owner_to_timeline_media']['count']

profile.['graphql']['user']['profile_pic_url']

profile.['graphql']['user']['profile_pic_url_hd']
还有您的 followed_by_count现在是 ['graphql']['user']['edge_followed_by']['count']

关于instagram - 如何使用 Instagram graphql?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45787021/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com