You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you go to Page=2 by following next_page_uri links, then try to get the previous_page_uri, you get back a 400 from the Twilio API. I've written the API team to ask why that is.
The text was updated successfully, but these errors were encountered:
It's broken in the Twilio API so there's not much we can do about it until they
fix it. Matching on the string because we don't have an error code to match on.
Commit 5724a23 now links to this issue if you hit this error in Logrole. Unfortunately the error doesn't have an associated error code, so I'm matching based on the error string:
str:=strings.Replace(err.Error(), "twilio: ", "", 1)
ifstrings.Contains(strings.ToLower(str), "aftersid is required for paging") {
str=str+" See https://github.com/saintpete/logrole/issues/2"
}
If you go to Page=2 by following next_page_uri links, then try to get the previous_page_uri, you get back a 400 from the Twilio API. I've written the API team to ask why that is.
The text was updated successfully, but these errors were encountered: