Dylan Simon

Results 115 comments of Dylan Simon

Like to extract them from a (running) slack app? I presume they change each time so you'd still have to run slack to connect. Another option would be to let...

Indeed: https://github.com/wee-slack/wee-slack/blob/master/wee_slack.py#L3070 They publish the secret, and make users copy the key from the redirected url. (In fact, we could just use their client id since it's already registered.)

I presume you mean muted in slack? I'm not seeing anywhere in the slack API that channel muting is exposed, so this may not be possible. However, it would theoretically...

I see, it comes back from the undocumented [users.prefs.get](https://github.com/ErikKalkoken/slackApiDoc/blob/master/users.prefs.get.md) call, but will take some investigation into exactly how. Since this API is not officially supported, I still might prefer to...

A debug log might be more useful. If it's like the other problem there may just be too many requests queueing up, but there's nothing about slack in the stack...

That's quite helpful, thank you. I'm not sure exactly how it's getting into that condition, but I've tried to make it recover better, or at least should produce a different...

That's right, currently this plugin never updates read markers, mainly because it's not entirely clear when to do so. My current thought is to update it every time pidgin's unseen...

Read markers are now updated on window focus. This seems like a reasonable compromise for how often to update it, and is at least fairly simple. Let me know if...

That is a good point. Hm, not exactly sure how to deal with it. You'll first see the real message, and then the history (including that message), and then any...

This seems conceptually simpler -- just wait for the given `Retry-After` header -- but is unfortunately technically more work, because it means we need to parse headers (and chunking) ourselves,...