我正在编写一段代码,以使用私人 Instagram API 为我自动接受 Instagram 关注请求。
端点 https://i.instagram.com/api/v1/news/inbox/friendships/pending/ 但是只返回最多 1000 的关注请求数。我相信甚至可以得到准确数字的原因。限制是名为 socialtools.io 的在线服务能够做到这一点。
我查看了 Android App 和 IG 以及 React App 之间的所有流量。但我无法在任何地方找到确切的数字。
我查看的其他端点:
https ://i.instagram.com/api/v1/friendships/pending/
https://i.instagram.com/api/v1/friendships/show_many/
-> 只返回最近的 200 个请求
https://www.instagram.com/accounts/activity/?__a=1&include_reel=true
-> 仅返回前 1000 个请求(网络应用程序)
这是使用我在开头提到的端点对一个有大约 1,400 个请求(我在使用我的脚本进行计数后立即接受它们)的帐户的响应的一部分。
"counts": {
"campaign_notification": 0,
"comment_likes": 0,
"comments": 0,
"likes": 1,
"photos_of_you": 0,
"relationships": 0,
"requests": 1000,
"usertags": 0
},