HTTP 400 · Bad Request
STORY_ID_EMPTY
You specified no story IDs.
HTTP 400
Stories
When & why it happens
A required story id was omitted from the request. Populate it and retry.
Handling in gogram
Surfaced as *gogram.ErrResponseCode. Match on the message:
if err, ok := err.(*gogram.ErrResponseCode); ok {
if err.Message == "STORY_ID_EMPTY" {
// handle this error
}
}
Related errors
STORIES_NEVER_CREATEDThis peer hasn't ever posted any stories.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_MONTHLY_XYou've hit the monthly story limit; wait for the specified number of seconds before posting a new story.STORY_SEND_FLOOD_WEEKLY_XYou've hit the weekly story limit; wait for the specified number of seconds before posting a new story.