abhishekjnvk / telegram-channel-downloader

Open Source Node.js script that simplifies scraping media files and messages from Telegram channels, groups, or users, facilitating offline access and storage of images, videos, and documents
79 stars 15 forks source link
downloader nodejs scraper script scripts telegram telegram-bot

Telegram Channel Downloader

Telegram Channel Downloader is a Node.js application that allows users to download media files and messages in html and json format from Telegram channels, groups, or users. This tool simplifies the process of archiving content from Telegram for offline viewing or storage.

Sponsor Project

Support the project by buying me a coffee! Every contribution helps to keep the project running.

Buy Me A Coffee

Setup

To use the Telegram Channel Downloader, follow these steps:

  1. Create a Telegram App: Go to https://my.telegram.org/apps and create a new application.
  2. Get API Credentials: After creating the app, copy the API ID and API Hash provided by Telegram.

Configure config.json:

  1. In the root directory of the application, create a file named config.json and paste the following code:
    {
        "apiId": YOUR_API_ID,
        "apiHash": "YOUR_API_HASH",
        "sessionId": ""
    }

    Replace YOUR_API_ID and YOUR_API_HASH with the values obtained in step 2. Keep the sessionId blank for now; it will be updated automatically after logging in for the first time.

Usage

Once the setup is complete, you can start using the Telegram Channel Downloader:

  1. Run the Script: Open your terminal or command prompt and navigate to the directory where the Telegram Channel Downloader is located. Run the following command to start the script:
    npm start
  2. Login: The script will prompt you to enter your phone number and the code sent to your phone or Telegram account. This authentication is required for the first time you run the script.
  3. Enter Channel/Group/User Name: After logging in, enter the name of the channel, group, or user from which you want to download media files and messages.
  4. Wait for Download: The script will start downloading all available media files and messages from the specified channel, group, or user. Depending on the size of the content, this process may take some time.
  5. Access Downloaded Files: Once the download is complete, you can find the downloaded media files and messages in the export/ directory within the Telegram Channel Downloader directory.

Additional Notes

Contributing

Contributions are welcome! If you have any suggestions, bug reports, or feature requests, please open an issue or submit a pull request.