Web (JS/TS)

Version 1.3.15

Add Taddy script to <head>...</head> section after telegram sdk script

<script src="https://sdk.taddy.pro/web/taddy.min.js?1317" data-pub-id="XXX"></script>

Replace XXX with your Public ID

After the script is loaded, the init() method will be called automatically and the ready event will be emitted. Taddy object can be accessed via window.Taddy

Advanced integration

  1. Add Taddy script to <head>...</head> section after telegram sdk script

<script src="https://sdk.taddy.pro/web/taddy.min.js?1317"></script>
  1. Install TypeScript declarations (optional). This package includes only types declarations without implementation. Adding the Taddy script to the head section is required (see Step 1).

npm i taddy-sdk-web@1.3.17
  1. Initialize Taddy

const taddy = window.Taddy;

taddy.init('xxxxxxxxxxx-pub-id-xxxxxxxxxxx');
  1. Send "ready" event when app is loaded

taddy.ready()

Exchange

  1. Get exchange service

  1. Fetch exchange feed

  1. Send impressions (manual)

  1. Open item via Telegram (item click handler)

  1. Send custom event ...

Ads

  1. Получаем рекламный сервис Taddy

  1. Выполняем загрузку и показ рекламного объявления interstitial

Last updated