skip to Main Content

Is it possible to create a group and assign users to it with Telegrams API? Could not find any method like this in it’s method list: https://core.telegram.org/methods

I am using php as my server language.

4

Answers


  1. Chosen as BEST ANSWER

    Received answer from Telegram: "currently creating groups is impossible via Telegram's API"


  2. In Java it is working for me. You can create a chat with:

    String name;

    TLVector < TLAbsInputUser > contacts;

    contacts.add(new TLInputUserContact(uid));

    TLAbsStatedMessage result=api.doRpcCall(new TLRequestMessagesCreateChat(contacts, name));

    Login or Signup to reply.
  3. Telegram’s API Methods had this create Channel method where you can create SuperGroups/Channels:

    Link

    Login or Signup to reply.
  4. I guess you should use this endpoint.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search