HTTP 400 · Bad Request
STORY_SEND_FLOOD_MONTHLY_X
You've hit the monthly story limit; wait for the specified number of seconds before posting a new story.
HTTP 400
Stories
When & why it happens
The account hit its monthly story-posting cap. Wait the supplied seconds before posting again.
Handling in gogram
Surfaced as *gogram.ErrResponseCode. Match on the message:
if err, ok := err.(*gogram.ErrResponseCode); ok {
if err.Message == "STORY_SEND_FLOOD_MONTHLY_X" {
// handle this error
}
}
Related errors
STORIES_NEVER_CREATEDThis peer hasn't ever posted any stories.STORY_ID_EMPTYYou specified no story IDs.STORY_ID_INVALIDThe specified story ID is invalid.STORY_NOT_MODIFIEDThe new story information you passed is equal to the previous story information, thus it wasn't modified.STORY_PERIOD_INVALIDThe specified story period is invalid for this account.STORY_SEND_FLOOD_WEEKLY_XYou've hit the weekly story limit; wait for the specified number of seconds before posting a new story.