I got the following exception from the Social Graph API:
(OAuthException) Block! You are engaging in behavior that may be considered annoying or abusive by other users.: You have been blocked from Body of an error/warning message. Title is: Block! You are engaging in behavior that may be considered annoying or abusive by other users. because you repeatedly misused this feature. This block will last anywhere from a few hours to a few days. When you are allowed to reuse this feature, please proceed with caution. Further misuse may result in your account being permanently disabled. For further information, please visit our {= FAQ page}.
My program makes thousands of calls, but the call that threw the exception was like this:
graph.facebook.com/search?q=6511+club&access_token=...
I'm not writing anything back to the API, so I don't see how I could be violating any abuse/annoyance rules. At first I thought I might have gone over the rate limit but this thread says the exception message for that would look like this:
Facebook.GraphAPIError: (#613) Calls to stream have exceeded the rate of 600 calls per 600 seconds.
My program is calling the above Event search endpoint with a new value for the q parameter repeatedly. For each event returned, my program:
- (calls /eventId) Gets the Event detail
- (calls /pageId) Get place Page of the Event's location if the Event's location references a Facebook place Page
- (calls /eventId/attending) Get the ids of the User profiles who are attending or maybe attending
- (calls /?ids=...) Get the User profiles of the Users who are attending or maybe attending.
I'm using the Facebook C# SDK. All my calls include an access token (from my personal User profile).