Closed terite closed 9 years ago
Thanks @terite. I'll look into that sometime this week.
Good catch! :clap: Thanks, @terite! All the API calls in the initial version were GET and then I decided to use the right method for each call but it looks like I missed all of these.
Even though some methods are specifically set to make POST requests, they still send the message payload entirely in params like a GET request. The max length of a url is much lower than the 16K bytes that Slack accepts in request bodies.
I just did a search & replace for params= inside self.post calls. I've manually tested chat.post_message, but not other methods.