HTTP 400 · Bad Request
STORIES_NEVER_CREATED
This peer hasn't ever posted any stories.
HTTP 400
Stories
When & why it happens
Story-specific precondition failed — usually the story is gone, the user lacks access, or a per-account story quota is hit.
Handling in gogram
Surfaced as *gogram.ErrResponseCode. Match on the message:
if err, ok := err.(*gogram.ErrResponseCode); ok {
if err.Message == "STORIES_NEVER_CREATED" {
// handle this error
}
}
Related errors
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_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.