Giter Site home page Giter Site logo

Comments (5)

irazasyed avatar irazasyed commented on May 22, 2024

Hi,

Can you tell me a real world use case for this?

Also, Are you aware that, you won't get any results when you make such a request?

You could simply use the sendMessage() or replyWithMessage() (If you're responding from a command). Let me know.

from telegram-bot-sdk.

9px avatar 9px commented on May 22, 2024

Can you tell me a real world use case for this?

yes. for example for reply a command that received from user.

when a user send a command to robot, server received it in 1 connection.
When we send an answer to the user (for example with sendMessage method), this is another connection.
This new telegram bot feature is great. because it save 1 connection :)
so server can process double request simultaneously.

from telegram-bot-sdk.

irazasyed avatar irazasyed commented on May 22, 2024

Here's how that would work (If you're on Laravel):

Route::post('/webhook', function () {
    $update = Telegram::getWebhookUpdates();
    $chat_id = $update->getMessage()->getChat()->getId();

    Telegram::sendChatAction($chat_id, 'typing');

    $method = 'sendMessage';
    $text = 'This is a demo...!';

    return response()->json(compact('method', 'chat_id', 'text'));
});

I'll think of a way to implement this in the project itself. But in the mean time, You can use the above.

from telegram-bot-sdk.

jonnywilliamson avatar jonnywilliamson commented on May 22, 2024

@9px - Hi! Could you tell why you think the send on reply is so useful? Apart from reducing a connection, it provides no information on wither your message was sent correctly etc.

That seems like a much bigger disadvantage than the benefit you get back!?

I'd love to know what you plan to use this for as I can't think of anything and I'm interested to make sure I'm not missing out!

from telegram-bot-sdk.

jonnywilliamson avatar jonnywilliamson commented on May 22, 2024

@9px Any more info?

from telegram-bot-sdk.

Related Issues (20)

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.