Adopted new slack api auth
This commit is contained in:
parent
4b7fea7ec1
commit
36e9911dfc
4 changed files with 114 additions and 41 deletions
26
README.md
26
README.md
|
@ -10,15 +10,9 @@ There are two ways to use `slack-exporter` (detailed below). Both require a Slac
|
|||
|
||||
1. Visit [https://api.slack.com/apps/](https://api.slack.com/apps/) and sign in to your workspace.
|
||||
2. Click `Create New App`, enter a name (e.g., `Slack Exporter`), and select your workspace.
|
||||
3. In the left-hand panel, navigate to `OAuth & Permissions`, and scroll to `User Token Scopes` (**not** `Bot Token Scopes`).
|
||||
4. Select the following permissions:
|
||||
- `channels:read`, `channels:history`
|
||||
- `groups:read`, `groups:history`
|
||||
- `mpim:read`, `mpim:history`
|
||||
- `im:read`, `im:history`
|
||||
- `users:read`
|
||||
5. Select `Install to Workspace` at the top of that page (or `Reinstall to Workspace` if you have done this previously) and accept at the prompt.
|
||||
6. Copy the `OAuth Access Token` (which will generally start with `xoxp` for user-level permissions)
|
||||
3. In prior versions of the Slack API, OAuth permissions had to be specified manually. Now, when prompted for an App Manifest, just paste in the contents of the `slack.yaml` file in the root of this repo.
|
||||
4. Select `Install to Workspace` at the top of that page (or `Reinstall to Workspace` if you have done this previously) and accept at the prompt.
|
||||
5. Copy the `OAuth Access Token` (which will generally start with `xoxp` for user-level permissions)
|
||||
|
||||
## Usage
|
||||
|
||||
|
@ -56,16 +50,14 @@ To use the ngrok method:
|
|||
2. Run `python bot.py`
|
||||
3. Run the ngrok binary with `path/to/ngrok http 5000`, where `5000` is the port on which the Flask application (step 2) is running. Copy the forwarding HTTPS address provided.
|
||||
|
||||
Return to the Slack app you created in [Authentication with Slack](#authentication-with-slack) and navigate to the `Slash Commands` page in the sidebar. Create the following slash commands (one for each applicable Flask route in `bot.py`):
|
||||
4. Create the following slash commands will be created (one for each applicable Flask route in `bot.py`):
|
||||
|
||||
| Command | Request URL | Arguments | Example Usage |
|
||||
|-----------------|-------------------------------------------|--------------|----------------------|
|
||||
| /export-channel | https://`[host_url]`/slack/export-channel | json \| text | /export-channel text |
|
||||
| /export-replies | https://`[host_url]`/slack/export-replies | json \| text | /export-replies json |
|
||||
| Command | Request URL | Arguments | Example Usage |
|
||||
|-----------------|-------------------------------------------|--------------|----------------------|
|
||||
| /export-channel | https://`[host_url]`/slack/export-channel | json \| text | /export-channel text |
|
||||
| /export-replies | https://`[host_url]`/slack/export-replies | json \| text | /export-replies json |
|
||||
|
||||
where, if using ngrok, `[domain]` would be replaced with something like `https://xxxxxxxxxxxx.ngrok.io`.
|
||||
|
||||
Navigate back to `OAuth & Permissions` and click `(Re)install to Workspace` to add these slash commands to the workspace.
|
||||
To do this, uncomment the `slash-commands` section in `slack.yaml` and replace `YOUR_HOST_URL_HERE` with something like `https://xxxxxxxxxxxx.ngrok.io` (if using ngrok). Then navigate back to `OAuth & Permissions` and click `(Re)install to Workspace` to add these slash commands to the workspace (ensure the OAuth token in your `.env` file is still correct).
|
||||
|
||||
## Author
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue