暫無描述

Painor c6eca75735 update to layer 193 5 月之前
.github b0f60d23d3 Update package 2 年之前
__tests__ 8579962aaf Update attributes to accept list for send album 1 年之前
examples 54ba6cbf88 Update version 2 年之前
gramjs c6eca75735 update to layer 193 5 月之前
.bablerc 00d5d83f0e refactor most code to TS 4 年之前
.gitignore a40198a4b6 Add support of 4GB files in browsers (#350) 2 年之前
.npmignore 50a443fee8 Fix npm package 4 年之前
.prettierignore cf4adfb77b Add friendly method getDialogs and iterDialogs 3 年之前
.prettierrc.json 6fc7ea29b7 Make className a part of JSON result in API classes 3 年之前
LICENSE 272930d0c7 Create LICENSE 5 年之前
README.md a969d6cfd9 Remove deprecated "input" with "readline" from README.md (#658) 1 年之前
babel.config.js cf4adfb77b Add friendly method getDialogs and iterDialogs 3 年之前
empty.txt 0b41308b09 message 4 年之前
generate_webpack.js b0f60d23d3 Update package 2 年之前
jest.config.js b0f60d23d3 Update package 2 年之前
npmpublish.bat c0033c6faf stop using mixins 4 年之前
package-lock.json c6eca75735 update to layer 193 5 月之前
package.json c6eca75735 update to layer 193 5 月之前
prepare_dist.sh a40198a4b6 Add support of 4GB files in browsers (#350) 2 年之前
publish_npm.js 17cda13d2e Update version + run prettier 1 年之前
tsconfig.json a3ddb35b6a Added MarkdownV2 support (#580) 1 年之前
type_doc.js 0225d5aaa8 Propagate floodwait error properly in requests. 3 年之前
webpack.config.js 34ad655b43 Add support for browsers NPM package. 3 年之前

README.md

GramJS

A Telegram client written in JavaScript for Node.js and browsers, with its core being based on Telethon.

How to get started

Here you'll learn how to obtain necessary information to create telegram application, authorize into your account and send yourself a message.

Note that if you want to use a GramJS inside of a browser, refer to this instructions.

Install GramJS:

$ npm i telegram

After installation, you'll need to obtain an API ID and hash:

  1. Login into your telegram account
  2. Then click "API development tools" and fill your application details (only app title and short name required)
  3. Finally, click "Create application"

Never share any API/authorization details, that will compromise your application and account.

When you've successfully created the application, change apiId and apiHash on what you got from telegram.

Then run this code to send a message to yourself.

import { TelegramClient } from "telegram";
import { StringSession } from "telegram/sessions";
import readline from "readline";

const apiId = 123456;
const apiHash = "123456abcdfg";
const stringSession = new StringSession(""); // fill this later with the value from session.save()

const rl = readline.createInterface({
  input: process.stdin,
  output: process.stdout,
});

(async () => {
  console.log("Loading interactive example...");
  const client = new TelegramClient(stringSession, apiId, apiHash, {
    connectionRetries: 5,
  });
  await client.start({
    phoneNumber: async () =>
      new Promise((resolve) =>
        rl.question("Please enter your number: ", resolve)
      ),
    password: async () =>
      new Promise((resolve) =>
        rl.question("Please enter your password: ", resolve)
      ),
    phoneCode: async () =>
      new Promise((resolve) =>
        rl.question("Please enter the code you received: ", resolve)
      ),
    onError: (err) => console.log(err),
  });
  console.log("You should now be connected.");
  console.log(client.session.save()); // Save this string to avoid logging in again
  await client.sendMessage("me", { message: "Hello!" });
})();

Note that you can also save auth key to a folder instead of a string, change stringSession into this:

> const storeSession = new StoreSession("folder_name");
> ```

Be sure to save output of `client.session.save()` into `stringSession` or `storeSession` variable to avoid logging in again.

## Running GramJS inside browsers

GramJS works great in combination with frontend libraries such as React, Vue and others.

While working within browsers, GramJS is using `localStorage` to cache the layers.

To get a browser bundle of GramJS, use the following command:

bash NODE_ENV=production npx webpack


You can also use the helpful script `generate_webpack.js`

bash node generate_webpack.js


## Calling the raw API

To use raw telegram API methods use [invoke function](https://gram.js.org/beta/classes/TelegramClient.html#invoke).

javascript await client.invoke(new RequestClass(args)); ```

Documentation

General documentation, use cases, quick start, refer to gram.js.org, or older version of documentation (will be removed in the future).

For more advanced documentation refer to gram.js.org/beta (work in progress).

If your ISP is blocking Telegram, you can check My ISP blocks Telegram. How can I still use GramJS?

Ask a question

If you have any questions about GramJS, feel free to open an issue or ask directly in our telegram group - @GramJSChat.