Telegrambot Deep Linking - telegram-bot

I am using deep linking (https://t.me/{botname}/start=foo) in my text so that I can interact with my bot by clicking on the link, unfortunately when I click on the link the START button pops up and I can't exchange data with my bot without clicking on the START button, how can I do this without clicking on the START button?

Related

How to save a PDF opened in IE new browser

I have a scenario to save a PDF which is opened in a window. By default selenium control moves to the Window, As it is a banking application I cannot repost the URL to save the pdf, I cannot press CTRL + S and right click doesn’t have any required data but using Robot I can click or move to an element, now the save button will enable only if you mouse over at the bottom of the page. I tried using ROBOT mouse over but the pop up did not popped up may be the reason it is not navigating via UI.
I have tried Sikuli also as the save pop up only pop up while mouse over that also failed.
We cannot use Actions as it wont support Webdriver driver, I have used Sikuli and ROBOT class mouse over.
The save Pop up opens only when it is mouse over at the bottom of the page, and it is not happening in ROBOT class as it navigates via DOM. please help

Flashing same menu on clicking of every menu, by using context menu function?

We are using java script, facing some issues by using context menu function. We have inbox tab, in that opening 80 messages, and draft tab opening 100 messages.
On right of inbox message only some menus should flash and same on right clicking
of draft messages.
But after clicking of both flashing same menus.
Please suggest the solution.

Start Over button in Gupshup chatbot

We would like to know how the Start Over button was used in one of the examples in Gupshup chatbot. Attaching the image for your reference.
We are actually intrested in allowing the user to go back to the main menu by using the button option. We have seen videos with user tying back. And also we have used the linking options.
Thanks
Manjiri

Firebase DynamicLinks not open after clicked <goo.gl button

I have problem with firebase dynamicLinks :
the scenario that I check :
1)I press firebase deeplink from nots and the app open, in the top left of
scree <- goo.gl and the right nots ->.
2) press the nots> button move to nots app.
3) try again the link open the app again , but now I press the
4)press in nots link not open the app and open safari with "open link in 'my app' " press open and the app store open.
to fix this I need to long press in the link and choose "open in 'my app'"
but after I return step 3 the link not open again in app.
This is how Universal links behave on iOS itself, and you found the solution that you posted:
to fix this I need to long press in the link and choose "open in 'my app'"
I just tested this locally, and it behaved as expected.

how to add start button in telegram bot with python-telegran-bot sdk?

I want to write a simple bot for telegram with python-telegram-bot SDK. I want to show a "START" keyboard button instead of typing "/start" command to work with my bot. How to do this with python-telegram-bot?
As I know when you start using a bot for the first time telegram shows that start button itself but after the first message is sent you won't see that keyboard button anymore all you need to do is clearing the bot's history to see that again.
On the other hand if you want to have a keyboard button that can be shown anytime you want, all you should do is implementing a custom keyboard. You can find useful information about keyboards here.