# fess-ds-slack **Repository Path**: mirrors_codelibs/fess-ds-slack ## Basic Information - **Project Name**: fess-ds-slack - **Description**: DataStore Crawler for Slack - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-07-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Slack Data Store for Fess [![Java CI with Maven](https://github.com/codelibs/fess-ds-slack/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/fess-ds-slack/actions/workflows/maven.yml) ========================== ## Overview Slack Data Store is an extension for Fess Data Store Crawling. ## Download See [Maven Repository](https://repo1.maven.org/maven2/org/codelibs/fess/fess-ds-slack/). ## Installation See [Plugin](https://fess.codelibs.org/13.3/admin/plugin-guide.html) of Administration guide. ## Getting Started ### Parameters Example : ``` token=xoxp-************-************-************-******************************** channels=general,random file_crawl=false include_private=false ``` | Key | Value | | --- | --- | | token | OAuth Access Token of SlackApp with permissions. | | channels | Scope of channels to crawl. (comma-separated or `*all`) | | file_crawl | `true` or `false` (Crawl files or not.) | | include_private | `true` or `false` (Crawl private channels or not.)| ### Scripts Example : ``` title=message.user + " #" + message.channel digest=message.text + "\n" + message.attachments content=message.text created=message.timestamp timestamp=message.timestamp url=message.permalink ``` | Key | Value | | --- | --- | | message.text | Text contents of the Message. | | message.user | User(display name) of the Message. | | message.channel | Channel name the Message sent. | | message.timestamp | Timestamp the Message sent. | | message.permalink | Permalink of the Message. | | message.attachments | Fallback of attachments of the Message. |