(self)
| 39 | return oauth_response.get("access_token") # type: ignore[no-untyped-call,no-any-return] |
| 40 | |
| 41 | def join_channel(self): # type: ignore[no-untyped-def] |
| 42 | try: |
| 43 | self._client.conversations_join(channel=self.channel_id) |
| 44 | except SlackApiError as e: |
| 45 | raise SlackChannelJoinError(e.response.get("error")) from e |
| 46 | |
| 47 | def get_channels_data(self, **kwargs) -> ChannelsDataResponse: # type: ignore[no-untyped-def] |
| 48 | """ |