0

I created an iOS app that using Instagram API and have a critical issue posting likes to Instagram.

Using endpoint – POST /media/media-id/likes, with user-specific access token. I request scope – likes from users.

Instagram API works fine for all requests except saving likes. We can only save/post a couple hundred likes to Instagram, and then response is "We've taken extra measures to protect the Instagram API from abnormal activity. Since you have recently created your API application, please contact apidevelopers@instagram.com to receive whitelisting for a higher rate limit."

There is other developers with same issue with no support or any feedback waiting for months.

Please, let me know if there is limits and how it works, or how to become whitelisted

I don’t want to create many Instagram API clients and assign users among them. It seems like bad acting for me, if there is official API with strict limits I want to work with it.

4

2 に答える 2

1

Instagram には新しい API 制限があります: アクセス トークンごとに 100 いいね/時間 60 フォロー/アンフォロー/時間。これは、サーバー側で認証してヘッダーに署名する場合のみです。新しい認証を確認してください: http://instagram.com/developer/authentication/

いいね/フォロー/フォロー解除を自動化する新しいサイトに使用していますが、問題はなく、うまく機能しています。それをチェックしてください:http: //instapromobiz.com

于 2014-08-07T01:31:39.630 に答える
0

Instagram は、IP アドレスに基づいて API リクエストを制限するための対策を強化しています。これは一般的な知識ではなく、API を広範囲に使用することでわかったことです。

彼らは、完璧とはほど遠い API を構築しましたが、「スマート」になるようにアップグレードしています。1 人のユーザーのためだけに API に何度も ping を実行する新しいクライアントは、システムにボットを仕掛けようとしているスクリプトキディである可能性が非常に高いことを知っているほど賢明です。このため、レート制限エラーは出さず、丁寧に「ボットによるスパムから API を保護するために特別な措置を講じました」と言っています。

幸いなことに、他のユーザーは引き続きあなたの好きなメカニズムにアクセスできるはずです. そのIPから、あなただけではありません。

于 2014-01-29T18:14:06.927 に答える