Questions tagged [telegraph]

Telegraph is a minimalist publishing tool that allows you to create richly formatted posts and push them to the Web in just a click. It is from Telegram. Use this tag for questions about interacting with Telegram, including use of its official API https://telegra.ph/api.

12 questions
2
votes
1 answer

Formatting options in Telegraph

I want to use monospaced format in Telegraph, just like I just did, not a block of code, just a single word. Also I'd like some strike-through too. Those are formatting options available in most (if not all) Telegram apps, and my purpose is to move…
lateus
  • 371
  • 4
  • 15
1
vote
1 answer

Zookeeper Refusing session request for client /0:0:0:0:0:0:0:1:59376 as it has seen zxid 0x124 our last zxid is 0x52 client must try another server

Running zookeeper with telegraph continue to get the following errors: [2021-04-05 15:00:58,881] INFO Refusing session request for client /0:0:0:0:0:0:0:1:59376 as it has seen zxid 0x124 our last zxid is 0x52 client must try another server…
Scott
  • 11
  • 2
1
vote
1 answer

Python telegraph api. I can't understand how send image to telegraph via Python lib

I'm trying to upload a photo from my hard drive to the telegraph. In the documentation it says to use the upload_file(): telegraph.upload.upload_file(f) Upload file to Telegra.ph’s servers. Returns a list of links. Allowed only .jpg, .jpeg, .png,…
Flild
  • 13
  • 3
1
vote
3 answers

How to get access token of telegram's telegraph account?

I would like to create and edit pages on Telegram's telegraph.ph website through telegraph API. https://telegra.ph/api#createPage To do so, I need to know the access token of the telegraph account. I've been searching high and low using Google how…
user3848207
  • 3,737
  • 17
  • 59
  • 104
0
votes
0 answers

How to get messages by using Webhooks such as the Getupdeats method in the Bot Telegram Documentation?

I would like to create a telegram bot with Express JS and Telegraph JS and get messages from the user in the way I created a host using ngrok const { Telegraf } = require('telegraf'); const bot = new…
EhsanKey_
  • 23
  • 6
0
votes
1 answer

ActiveMQ Artemis / Telegraf / InfluxDB - is there a way to clone an MQTT message from a single topic to multiple topics?

I'm trying to use ActiveMQ Artemis to receive a single MQTT message, and then clone it to multiple topics. For example, a single MQTT message with the topic "mydata/PC" is published to ActiveMQ Artemis. Through some mechanism, ActiveMQ Artemis…
Jack BeNimble
  • 35,733
  • 41
  • 130
  • 213
0
votes
1 answer

Can I edit my posts on the telegra.ph web using my account created by API

I created an account through Telegraph API and created pages by API. However, I don't know how to create or edit pages through Telegraph Web with this account created by API.
tzwm
  • 499
  • 1
  • 4
  • 12
0
votes
1 answer

Telegraph API, upload file

I'm trying to upload a file which is an image to a Telegraph page via its API. Everything works fine if I send a link, an url to a file which is already uploaded to web. url_telegraph_API = 'https://api.telegra.ph/' short_name =…
Sergey Solod
  • 695
  • 7
  • 15
0
votes
0 answers

telegraph , python ,telegram bot

How to upload several photos to telegraph in python? for example I have several photos and they should be uploaded to telegraph using python? create_page(title, content=None, html_content=None, author_name=None, author_url=None,…
0
votes
1 answer

Formatting lists in Telegraph API

Working on a system that includes posting articles on Telegraph via python. Generally, everything works. But recently I found weird behavior of
    and
      tags in different browsers. On the mobile version of Telegraph, it works as expected, while…
0
votes
1 answer

Insert YouTube video on page with Telegraph API

I'm trying to insert a YouTube player on the page. I use the API telegra.ph/api. Tell me, please, where is my…
Nick Datsky
  • 13
  • 1
  • 3
-1
votes
1 answer

How can I make a link clickable between sentences in Telegraph using Python?

I'm trying to automate publishing some texts in Telegram using Telegraph and Python. I need to make links that will be clickable on Telegraph. I made this only for Telegraph file with one link. Here is the code: from telegraph import Telegraph from…