Skip to content

Uncategorized

readTextFromClipboard

To read text from the clipboard, use the readTextFromClipboard function.

ts
import { readTextFromClipboard } from '@telegram-apps/sdk';

if (readTextFromClipboard.isSupported()) {
  const contents = await readTextFromClipboard(); // string | null
}

shareStory

The shareStory method opens the native story editor.

It has one required parameter: a media URL that will be used as the background for the story.

ts
import { shareStory } from '@telegram-apps/sdk';

if (shareStory.isSupported()) {
  shareStory('https://my.media/background.png');
}

The function optionally accepts an object with additional options:

  • text?: string - a caption to add to the media, with a limit of 0-200 characters for regular users, and 0-2048 characters for premium subscribers.
  • widgetLink?: object - an object for including a widget link in the story. Only premium subscribers can post stories with links.
    • url: string - the URL to be included in the story.
    • name?: string - the display name for the widget link (0-48 characters).
ts
shareStory('https://my.media/background.png', {
  text: 'Today was a good day. Love it! Thanks to this public!',
  widgetLink: {
    url: 'https://t.me/heyqbnk',
    name: 'heyqbnk public group',
  },
});

sendData

To send data to the bot, use the sendData function. This function sends a service message to the bot and closes the Mini App.

ts
import { sendData } from '@telegram-apps/sdk';

sendData('my-data-goes-here');

TIP

This function sends data up to 4096 bytes to the bot and is available for Mini Apps launched via a Keyboard button.

WARNING

This function is only accessible for Mini Apps started through a Keyboard button. See the web_app_data field in the Message class for more details.

switchInlineQuery

To create a message prefixed with the bot username and a specific text, and share it in another chat, use the switchInlineQuery method. You can use the second optional argument to specify which chat types can be selected to send the message.

ts
import { switchInlineQuery } from '@telegram-apps/sdk';

if (switchInlineQuery.isSupported()) {
  await switchInlineQuery('Check this bot!', [
    'users',
    'bots',
    'groups',
    'channels',
  ]);
}

Released under the MIT License.