argvMatey

Results 2 comments of argvMatey
trafficstars

Here's my solution to the in-message usernames: Match match = Regex.Match(messageText, @"\", RegexOptions.IgnoreCase); while (match.Success) { string inMsgSlackUserId = match.Value.Replace("", ""); messageText = Regex.Replace(messageText, @"\", findInMsgUser(inMsgSlackUserId, slackUserList)); match = Regex.Match(messageText,...

Yeah, I saw that page as well, and I can confirm that there's no retry-after value in the response header. Since batching the requests doesn't result in more messages being...