Giter VIP home page Giter VIP logo

telegram-bot-delphi's Introduction

telegram-bot-delphi

Features

  • ✅ Send text message
  • ✅ Send file
  • ✅ Send location
  • ✅ Send message with buttons
  • ✅ Get chat updates

How to create a bot in Telegram?

  1. Start a new chat with @BotFather in Telegram
  2. Send /newbot
  3. Choose a name for your bot
  4. Choose a username, it must end in "bot", Example: tetris_bot
  5. Get and save the "token" to use in examples

Telegram API Documentation

telegram-bot-delphi's People

Contributors

gabrieltrigo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

telegram-bot-delphi's Issues

asking

how using break line on telegram sir, i use \n didnt work. thanks

memory leak

after the monitor starts, the memory usage starts to grow. added in uTelegramAPI module
function TTelegramAPI.GetUpdates
such a line
pArrJSON.Destroy;

try
    FResult := _GET(GetURL('/getUpdates'));

    pArrJSON := ((TJSONObject.ParseJSONValue(FResult) as TJSONObject)
      .GetValue('result') as TJSONArray);

    if pArrJSON.Count <= 0 then Exit;

    for I := 0 to Pred(pArrJSON.Count) do
      AValue.Add(TJSON.JsonToObject<TChatMessageDTO>(pArrJSON.Items[I].ToJSON));

    pArrJSON.Destroy; //-----new line-----
  except
    on E: Exception do
    begin
      if Assigned(FProcErrorException) then
        FProcErrorException(E);
    end;
  end;

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.