mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2025-01-05 18:38:19 +01:00
Update content of files
This commit is contained in:
parent
e488128d61
commit
f1b0bbfbdf
7 changed files with 1301 additions and 61 deletions
|
@ -237,26 +237,6 @@ var Main = {
|
|||
e.preventDefault();
|
||||
closePopup(Aj.state.$headerMenu);
|
||||
},
|
||||
openSimplePopup: function($popup) {
|
||||
var onEnterPress = function(e) {
|
||||
if (e.keyCode == Keys.RETURN) {
|
||||
e.stopImmediatePropagation();
|
||||
closePopup($popup);
|
||||
}
|
||||
};
|
||||
var onClose = function(e) {
|
||||
e.stopImmediatePropagation();
|
||||
closePopup($popup);
|
||||
};
|
||||
openPopup($popup, {
|
||||
onOpen: function() {
|
||||
$(document).on('keydown', onEnterPress);
|
||||
},
|
||||
onClose: function() {
|
||||
$(document).off('keydown', onEnterPress);
|
||||
}
|
||||
});
|
||||
},
|
||||
eAuctionUnavailable: function(e) {
|
||||
e.preventDefault();
|
||||
var username = $(this).attr('data-username');
|
||||
|
@ -282,17 +262,56 @@ var Main = {
|
|||
eHowitworks: function(e) {
|
||||
e.preventDefault();
|
||||
e.stopImmediatePropagation();
|
||||
Main.openSimplePopup(Aj.state.$howitworksPopup);
|
||||
var onEnterPress = function(e) {
|
||||
if (e.keyCode == Keys.RETURN) {
|
||||
e.stopImmediatePropagation();
|
||||
closePopup(Aj.state.$howitworksPopup);
|
||||
}
|
||||
};
|
||||
openPopup(Aj.state.$howitworksPopup, {
|
||||
onOpen: function() {
|
||||
$(document).on('keydown', onEnterPress);
|
||||
},
|
||||
onClose: function() {
|
||||
$(document).off('keydown', onEnterPress);
|
||||
}
|
||||
});
|
||||
},
|
||||
eHowofferworks: function(e) {
|
||||
e.preventDefault();
|
||||
e.stopImmediatePropagation();
|
||||
Main.openSimplePopup(Aj.state.$howofferworksPopup);
|
||||
var onEnterPress = function(e) {
|
||||
if (e.keyCode == Keys.RETURN) {
|
||||
e.stopImmediatePropagation();
|
||||
closePopup(Aj.state.$howofferworksPopup);
|
||||
}
|
||||
};
|
||||
openPopup(Aj.state.$howofferworksPopup, {
|
||||
onOpen: function() {
|
||||
$(document).on('keydown', onEnterPress);
|
||||
},
|
||||
onClose: function() {
|
||||
$(document).off('keydown', onEnterPress);
|
||||
}
|
||||
});
|
||||
},
|
||||
eBotsAbout: function(e) {
|
||||
e.preventDefault();
|
||||
e.stopImmediatePropagation();
|
||||
Main.openSimplePopup(Aj.state.$botsaboutPopup);
|
||||
var onEnterPress = function(e) {
|
||||
if (e.keyCode == Keys.RETURN) {
|
||||
e.stopImmediatePropagation();
|
||||
closePopup(Aj.state.$botsaboutPopup);
|
||||
}
|
||||
};
|
||||
openPopup(Aj.state.$botsaboutPopup, {
|
||||
onOpen: function() {
|
||||
$(document).on('keydown', onEnterPress);
|
||||
},
|
||||
onClose: function() {
|
||||
$(document).off('keydown', onEnterPress);
|
||||
}
|
||||
});
|
||||
},
|
||||
amountFieldValue: function($form, field) {
|
||||
var $fieldEl = field ? $form.field(field) : $form;
|
||||
|
@ -665,14 +684,9 @@ var Wallet = {
|
|||
sendTransaction: function(options) {
|
||||
if (Aj.globalState.tonConnectVersion == 2) {
|
||||
var tonConnectUI = Aj.globalState.tonConnectUI;
|
||||
var sendTransaction = function(data) {
|
||||
var transaction = data.transaction;
|
||||
var sendTransaction = function(transaction) {
|
||||
tonConnectUI.sendTransaction(transaction).then(function(transaction) {
|
||||
options.onConfirm && options.onConfirm(true);
|
||||
if (data.confirm_method) {
|
||||
var params = $.extend({boc: transaction.boc}, data.confirm_params);
|
||||
Aj.apiRequest(data.confirm_method, params);
|
||||
}
|
||||
}).catch(function(){});
|
||||
};
|
||||
if (!tonConnectUI.connected) {
|
||||
|
@ -683,10 +697,10 @@ var Wallet = {
|
|||
if (result.error) {
|
||||
return showAlert(result.error);
|
||||
}
|
||||
sendTransaction(result);
|
||||
sendTransaction(result.transaction);
|
||||
});
|
||||
} else if (options.transaction) {
|
||||
sendTransaction(options);
|
||||
sendTransaction(options.transaction);
|
||||
}
|
||||
} else {
|
||||
QR.showPopup(options);
|
||||
|
@ -2378,17 +2392,15 @@ var Ads = {
|
|||
init: function() {
|
||||
Aj.onLoad(function(state) {
|
||||
var cont = Aj.ajContainer;
|
||||
$(cont).on('click.curPage', '.js-pay-for-ads', Ads.ePayForAds);
|
||||
$(cont).on('click.curPage', '.js-howtopay-ton', Ads.eHowToPayTon);
|
||||
$(cont).on('click.curPage', '.js-get-ad-rewards', Ads.eGetAdRewards);
|
||||
state.$payForAdsPopup = $('.js-pay-for-ads-popup');
|
||||
state.$howToPayTonPopup = $('.js-how-to-pay-ton-popup');
|
||||
state.$howToGetRewardsPopup = $('.js-how-to-get-rewards-popup');
|
||||
|
||||
$(cont).on('click.curPage', '.js-more-funds-btn', Ads.eAddMoreFunds);
|
||||
$(cont).on('click.curPage', '.js-recharge-btn', Ads.eRechargeAccount);
|
||||
state.$rechargeForm = $('.js-recharge-form', cont);
|
||||
state.$searchField = $('.js-account-search-field', cont);
|
||||
Main.initForm(state.$rechargeForm);
|
||||
state.$rechargeForm.on('submit', Ads.eSearchSubmit);
|
||||
state.$rechargeForm.field('query').on('input', Ads.eSearchInput);
|
||||
state.$rechargeForm.field('query').on('change', Ads.eSearchChange);
|
||||
$('.js-form-clear', state.$rechargeForm).on('click', Ads.eSearchClear);
|
||||
state.$rechargeBtn = $('.js-recharge-btn', cont);
|
||||
state.updLastReq = +Date.now();
|
||||
if (state.needUpdate) {
|
||||
|
@ -2398,24 +2410,13 @@ var Ads = {
|
|||
Aj.onUnload(function(state) {
|
||||
clearTimeout(state.updStateTo);
|
||||
state.needUpdate = false;
|
||||
Main.destroyForm(state.$rechargeForm);
|
||||
Main.destroyForm(state.$giftPremiumForm);
|
||||
state.$rechargeForm.off('submit', Ads.eSearchSubmit);
|
||||
state.$rechargeForm.field('query').off('input', Ads.eSearchInput);
|
||||
state.$rechargeForm.field('query').off('change', Ads.eSearchChange);
|
||||
$('.js-form-clear', state.$rechargeForm).off('click', Ads.eSearchClear);
|
||||
});
|
||||
},
|
||||
ePayForAds: function(e) {
|
||||
e.preventDefault();
|
||||
e.stopImmediatePropagation();
|
||||
Main.openSimplePopup(Aj.state.$payForAdsPopup);
|
||||
},
|
||||
eHowToPayTon: function(e) {
|
||||
e.preventDefault();
|
||||
e.stopImmediatePropagation();
|
||||
Main.openSimplePopup(Aj.state.$howToPayTonPopup);
|
||||
},
|
||||
eGetAdRewards: function(e) {
|
||||
e.preventDefault();
|
||||
e.stopImmediatePropagation();
|
||||
Main.openSimplePopup(Aj.state.$howToGetRewardsPopup);
|
||||
},
|
||||
updateState: function() {
|
||||
var now = +Date.now();
|
||||
if (document.hasFocus() ||
|
||||
|
@ -2450,6 +2451,97 @@ var Ads = {
|
|||
}
|
||||
}
|
||||
},
|
||||
eSearchInput: function(e) {
|
||||
var $field = Aj.state.$searchField;
|
||||
$('.js-search-field-error').html('');
|
||||
$field.removeClass('error');
|
||||
},
|
||||
eSearchChange: function(e) {
|
||||
Ads.searchSubmit();
|
||||
},
|
||||
eSearchClear: function(e) {
|
||||
var $form = Aj.state.$rechargeForm;
|
||||
var $field = Aj.state.$searchField;
|
||||
var $btn = Aj.state.$rechargeBtn;
|
||||
$form.field('account').value('');
|
||||
$form.field('query').value('').prop('disabled', false);
|
||||
$btn.prop('disabled', true);
|
||||
$field.removeClass('found');
|
||||
$('.js-search-field-error').html('');
|
||||
$field.removeClass('error');
|
||||
Ads.updateUrl();
|
||||
$form.field('query').focus();
|
||||
},
|
||||
eSearchSubmit: function(e) {
|
||||
e.preventDefault();
|
||||
Ads.searchSubmit();
|
||||
},
|
||||
searchSubmit: function() {
|
||||
var $form = Aj.state.$rechargeForm;
|
||||
var account = $form.field('account').value();
|
||||
var query = $form.field('query').value();
|
||||
if (!query.length) {
|
||||
$form.field('query').focus();
|
||||
return;
|
||||
}
|
||||
Aj.state.$searchField.addClass('loading').removeClass('play').redraw().addClass('play');
|
||||
Aj.showProgress();
|
||||
Aj.apiRequest('searchAdsAccount', {
|
||||
query: account || query
|
||||
}, function(result) {
|
||||
Aj.hideProgress();
|
||||
Ads.updateResult(result);
|
||||
Aj.state.$searchField.removeClass('loading');
|
||||
});
|
||||
},
|
||||
updateResult: function(result) {
|
||||
var $form = Aj.state.$rechargeForm;
|
||||
var $field = Aj.state.$searchField;
|
||||
var $btn = Aj.state.$rechargeBtn;
|
||||
if (result.error) {
|
||||
$('.js-search-field-error').html(result.error);
|
||||
$field.addClass('error').removeClass('found');
|
||||
$form.field('query').prop('disabled', false);
|
||||
} else {
|
||||
$('.js-search-field-error').html('');
|
||||
$field.removeClass('error');
|
||||
if (result.found) {
|
||||
if (result.found.photo) {
|
||||
$('.js-account-search-photo', $field).html(result.found.photo);
|
||||
}
|
||||
if (result.found.name) {
|
||||
var $form = Aj.state.$rechargeForm;
|
||||
$form.field('query').value(uncleanHTML(result.found.name));
|
||||
}
|
||||
$form.field('account').value(result.found.account);
|
||||
$field.addClass('found');
|
||||
$form.field('query').prop('disabled', true);
|
||||
$btn.prop('disabled', false);
|
||||
} else {
|
||||
$form.field('account').value('');
|
||||
$field.removeClass('found');
|
||||
$form.field('query').prop('disabled', false);
|
||||
$btn.prop('disabled', true);
|
||||
}
|
||||
}
|
||||
Ads.updateUrl();
|
||||
},
|
||||
updateUrl: function() {
|
||||
var new_url = '';
|
||||
var $form = Aj.state.$rechargeForm;
|
||||
var account = $form.field('account').value();
|
||||
if (account) {
|
||||
new_url += '&account=' + encodeURIComponent(account);
|
||||
}
|
||||
if (new_url) {
|
||||
new_url = '?' + new_url.substr(1);
|
||||
}
|
||||
var loc = Aj.location(), path = loc.pathname + loc.search;
|
||||
if (!new_url) {
|
||||
new_url = loc.pathname;
|
||||
}
|
||||
Aj.setLocation(new_url, path != '/ads');
|
||||
},
|
||||
updateHistory: function(html) {
|
||||
$('.js-premium-history').replaceWith(html);
|
||||
},
|
||||
|
@ -2500,11 +2592,7 @@ var Ads = {
|
|||
if (result.error) {
|
||||
return showAlert(result.error);
|
||||
}
|
||||
if (result.redirect_to) {
|
||||
Aj.reload();
|
||||
} else {
|
||||
|
||||
}
|
||||
Aj.location('/ads');
|
||||
});
|
||||
}
|
||||
};
|
||||
|
|
328
data/web/telegram.org/blog/telegram-business.html
Normal file
328
data/web/telegram.org/blog/telegram-business.html
Normal file
|
@ -0,0 +1,328 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Introducing Telegram Business</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta property="og:title" content="Introducing Telegram Business">
|
||||
<meta property="og:image" content="https://telegram.org/file/400780400268/1/6Avx2xeE-E8.239216/5a7f21012854ea61ce">
|
||||
<meta property="og:site_name" content="Telegram">
|
||||
<meta property="og:description" content="Starting today, anyone can turn their Telegram account into a business account – and get access to business features, such as opening hours, location, quick replies, automated messages, custom start page, chatbot support, and more.">
|
||||
|
||||
<meta property="article:published_time" content="2024-03-31T16:32:30+00:00"><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:image" content="https://telegram.org/file/400780400268/1/6Avx2xeE-E8.239216/5a7f21012854ea61ce" />
|
||||
<meta property="fb:app_id" content="254098051407226">
|
||||
<meta property="vk:app_id" content="3782569">
|
||||
<meta name="apple-itunes-app" content="app-id=686449807">
|
||||
<meta name="telegram:channel" content="@telegram">
|
||||
<link rel="canonical" href="https://telegram.org/blog/telegram-business" />
|
||||
<link rel="icon" type="image/svg+xml" href="/img/website_icon.svg?4">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon-16x16.png">
|
||||
<link rel="alternate icon" href="/img/favicon.ico" type="image/x-icon" />
|
||||
<link href="/css/bootstrap.min.css?3" rel="stylesheet">
|
||||
|
||||
<link href="/css/telegram.css?236" rel="stylesheet" media="screen">
|
||||
</head>
|
||||
<body class="preload">
|
||||
<div id="fb-root"></div>
|
||||
<div class="tl_page_wrap">
|
||||
<div class="tl_page_head navbar navbar-static-top navbar navbar-tg">
|
||||
<div class="navbar-inner">
|
||||
<div class="container clearfix">
|
||||
<ul class="nav navbar-nav navbar-right"><li class="dropdown top_lang_select"><a class="dropdown-toggle" onclick="return dropdownClick(this, event)" href="#"><i class="dev_top_lang_icon"></i>EN <b class="minicaret"></b></a>
|
||||
<ul class="dropdown-menu"><li class="chosen "><a href="?setln=en">English</a></li><li class="long "><a href="?setln=id">Bahasa Indonesia</a></li><li class="long "><a href="?setln=ms">Bahasa Melayu</a></li><li class=""><a href="?setln=de">Deutsch</a></li><li class=""><a href="?setln=es">Español</a></li><li class=""><a href="?setln=fr">Français</a></li><li class=""><a href="?setln=it">Italiano</a></li><li class=""><a href="?setln=nl">Nederlands</a></li><li class=""><a href="?setln=uz">O‘zbek</a></li><li class=""><a href="?setln=pl">Polski</a></li><li class="long "><a href="?setln=pt-br">Português (Brasil)</a></li><li class=""><a href="?setln=tr">Türkçe</a></li><li class=""><a href="?setln=be">Беларуская</a></li><li class=""><a href="?setln=ru">Русский</a></li><li class=""><a href="?setln=uk">Українська</a></li><li class=""><a href="?setln=ar">العربية</a></li><li class=""><a href="?setln=fa">فارسی</a></li><li class=""><a href="?setln=ko">한국어</a></li></ul></li><li class="navbar-twitter hidden-xs"><a href="https://twitter.com/telegram" target="_blank" data-track="Follow/Twitter" onclick="trackDlClick(this, event)"><i class="icon icon-twitter"></i> Twitter</a></li></ul>
|
||||
<ul class="nav navbar-nav">
|
||||
<li class=""><a href="/">Home</a></li>
|
||||
<li class=""><a href="/faq">FAQ</a></li>
|
||||
<li class=""><a href="/apps">Apps</a></li>
|
||||
<li class="hidden-xs "><a href="//core.telegram.org/api">API</a></li>
|
||||
<li class="hidden-xs "><a href="//core.telegram.org/mtproto">Protocol</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container clearfix tl_page_container ">
|
||||
<div class="tl_page">
|
||||
<div class="tl_contest_page_wrap">
|
||||
<div class="tl_blog_side_blog"><div class="side_blog_wrap">
|
||||
<div class="side_blog">
|
||||
<a href="/blog" class="side_blog_header">Recent News</a>
|
||||
<div class="side_blog_entries">
|
||||
<a href="/blog/telegram-business" class="side_blog_entry">
|
||||
<div class="side_blog_date">Mar 31</div>
|
||||
<div class="side_blog_title">Introducing Telegram Business</div>
|
||||
</a><a href="/blog/monetization-for-channels" class="side_blog_entry">
|
||||
<div class="side_blog_date">Mar 31</div>
|
||||
<div class="side_blog_title">Sharing Revenue with Channel Owners</div>
|
||||
</a><a href="/blog/february2024" class="side_blog_entry">
|
||||
<div class="side_blog_date">Feb 29</div>
|
||||
<div class="side_blog_title">Stories for Groups and 8 More Features</div>
|
||||
</a><a href="/blog/new-saved-messages-and-9-more" class="side_blog_entry">
|
||||
<div class="side_blog_date">Jan 31</div>
|
||||
<div class="side_blog_title">Saved Messages 2.0, One-Time Voice Messages and 8 More Features</div>
|
||||
</a><a href="/blog/calls-and-bots" class="side_blog_entry">
|
||||
<div class="side_blog_date">Dec 31</div>
|
||||
<div class="side_blog_title">Colorful Calls, Thanos Snap Effect, and Better Bots</div>
|
||||
</a><a href="/blog/posts-in-stories-and-more" class="side_blog_entry">
|
||||
<div class="side_blog_date">Dec 23</div>
|
||||
<div class="side_blog_title">Channel Appearance, Posts in Stories and More</div>
|
||||
</a><a href="/blog/similar-channels" class="side_blog_entry">
|
||||
<div class="side_blog_date">Nov 30</div>
|
||||
<div class="side_blog_title">Similar Channels, Reposting Stories, and 9 More Features</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div></div>
|
||||
<div id="dev_page_content_wrap" class=" ">
|
||||
<div class="dev_page_bread_crumbs"></div>
|
||||
<h1 id="dev_page_title">Introducing Telegram Business</h1>
|
||||
|
||||
<div id="dev_page_content"><div class="blog_side_image_wrap">
|
||||
<picture class="dev_page_tgsticker blog_side_image js-tgsticker_image" style="width:160px;"><div style="padding-top:100%"></div><source type="application/x-tgsticker" srcset="/file/400780400799/5/JMfroLl_-Vk.12159/9b57943e4a4e32b1d6"><img src="/file/400780400799/6/pHpzdwV-5fs.40285.png/c7526b789ccbc8499e" /></picture>
|
||||
</div>
|
||||
|
||||
<div class="blog_wide_image">
|
||||
<a href="/file/400780400552/2/IwKF9l550Kw.443312/bd43c2361437329342" target="_blank"><img src="/file/400780400268/1/6Avx2xeE-E8.239216/5a7f21012854ea61ce" srcset="/file/400780400552/2/IwKF9l550Kw.443312/bd43c2361437329342, 1200w" title="" alt="Introducing Telegram Business"/></a>
|
||||
</div>
|
||||
|
||||
<p>Starting today, anyone can turn their Telegram account into a business account – and get access to <strong>business features</strong>, such as opening hours, location, quick replies, automated messages, custom start page, chatbot support, and more.</p>
|
||||
<h4><a class="anchor" name="introducing-telegram-business" href="#introducing-telegram-business"><i class="anchor-icon"></i></a>Introducing Telegram Business</h4>
|
||||
<p>Telegram has long allowed developers to build <a href="https://core.telegram.org/bots/features">powerful bots</a> and <a href="https://core.telegram.org/bots/webapps">mini-apps</a> which were widely used by businesses.</p>
|
||||
<p>Starting today, any user can easily use <strong>business features</strong> — without any coding skills.</p>
|
||||
<!--
|
||||
- [Hours and Location]()
|
||||
- [Intro Page]()
|
||||
- [Quick Replies]()
|
||||
- [Greeting Messages]()
|
||||
- [Away Messages]()
|
||||
- [Tags for Chats]()
|
||||
- [Links to Chat]()
|
||||
- [Chatbots]()
|
||||
-->
|
||||
|
||||
<h4><a class="anchor" name="hours-and-location" href="#hours-and-location"><i class="anchor-icon"></i></a>Hours and Location</h4>
|
||||
<p>Businesses can display their <strong>hours of operation</strong> and show their <strong>location</strong> on a map.</p>
|
||||
<div class="blog_video_player_wrap" style="max-width: 600px; margin: 20px auto 20px;">
|
||||
<video class="blog_video_player tl_blog_vid_autoplay" onclick="videoTogglePlay(this)" autoplay loop controls muted poster="/file/400780400771/1/jlpXI8h2sQs.91442/7ba1f0b654e1be0805" style="max-width: 600px;" title="" alt="Location">
|
||||
<source src="/file/400780400102/5/V6S2rpxNYOg.2335835.mp4/6dd11a30eeee7fb4e3" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
|
||||
<p>Users will know where to find you and immediately see if you're open.</p>
|
||||
<div class="blog_video_player_wrap" style="max-width: 600px; margin: 20px auto 20px;">
|
||||
<video class="blog_video_player tl_blog_vid_autoplay" onclick="videoTogglePlay(this)" autoplay loop controls muted poster="/file/400780400228/3/GeLUshkkPmE.91233/4469f52fd3666f3e54" style="max-width: 600px;" title="" alt="Business Hours">
|
||||
<source src="/file/400780400514/5/zacKKdn_sck.2300897.mp4/e8b20c77452efb5cd4" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
|
||||
<h4><a class="anchor" name="start-page" href="#start-page"><i class="anchor-icon"></i></a>Start Page</h4>
|
||||
<p>Businesses can customize their <strong>start page</strong> for empty chats, choosing which <strong>text</strong> and <strong>sticker</strong> people see before they start a conversation.</p>
|
||||
<div class="blog_video_player_wrap" style="max-width: 600px; margin: 20px auto 20px;">
|
||||
<video class="blog_video_player tl_blog_vid_autoplay" onclick="videoTogglePlay(this)" autoplay loop controls muted poster="/file/400780400032/3/FD5uJjgpZjo.43495/eba719c9a653debbc3" style="max-width: 600px;" title="" alt="Start Page">
|
||||
<source src="/file/400780400013/5/q2T4Xmu4dXw.2919196.mp4/a03520f5c150f52c0e" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
|
||||
<p>This lets you showcase info about products and services or welcome customers with branded artwork.</p>
|
||||
<!--
|
||||
>It takes just a few taps to [make a new sticker](LINK) out of any photo.
|
||||
-->
|
||||
|
||||
<h4><a class="anchor" name="quick-replies" href="#quick-replies"><i class="anchor-icon"></i></a>Quick Replies</h4>
|
||||
<p>Telegram Business allows you to create <strong>quick replies</strong>. Quick replies are shortcuts for sending preset messages that may contain several messages and support text formatting, links, stickers, media, and files.</p>
|
||||
<div class="blog_video_player_wrap" style="max-width: 600px; margin: 20px auto 20px;">
|
||||
<video class="blog_video_player tl_blog_vid_autoplay" onclick="videoTogglePlay(this)" autoplay loop controls muted poster="/file/400780400569/1/tvZOu9aKUDE.48221/b835f4a8cd625f8bc2" style="max-width: 600px;" title="" alt="Quick Replies">
|
||||
<source src="/file/400780400123/2/Ibe-DNsF8e4.2512631.mp4/4e44a0349abcbe3abc" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
|
||||
<p>This helps you quickly send information that your customers often need – like a schedule of classes or a PDF with your menu.</p>
|
||||
<blockquote>
|
||||
<p>Typing a <code>/</code> in the message bar shows a <strong>panel</strong> with all of your quick replies – that you can send or edit in <strong>one tap</strong>. This only works in private chats, not groups.</p>
|
||||
</blockquote>
|
||||
<h4><a class="anchor" name="greeting-messages" href="#greeting-messages"><i class="anchor-icon"></i></a>Greeting Messages</h4>
|
||||
<p>For more automation, you can set a <strong>greeting message</strong> that will be sent to users who contact you for the <strong>first time</strong>. This will ensure they get an <strong>instant reply</strong> with important info – or just a friendly hello. <img class="emoji" src="//telegram.org/img/emoji/40/F09F918B.png" width="20" height="20" alt="👋" /></p>
|
||||
<div class="blog_video_player_wrap" style="max-width: 600px; margin: 20px auto 20px;">
|
||||
<video class="blog_video_player tl_blog_vid_autoplay" onclick="videoTogglePlay(this)" autoplay loop controls muted poster="/file/400780400924/1/QUV0eNZfTrU.63933/53dff22fc20198b128" style="max-width: 600px;" title="" alt="Greeting Message">
|
||||
<source src="/file/400780400989/5/DGdQ5_dVTro.2990720.mp4/bc55cdb8aca4662584" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
|
||||
<p>Your greeting may also include answers to frequent questions or more details about your business.</p>
|
||||
<blockquote>
|
||||
<p>You can <strong>specify a period</strong> after which a new message will result in your greeting being <strong>sent again</strong>.</p>
|
||||
</blockquote>
|
||||
<h4><a class="anchor" name="away-messages" href="#away-messages"><i class="anchor-icon"></i></a>Away Messages</h4>
|
||||
<p>You can also set an <strong>away message</strong> to be sent when your business <strong>is closed</strong> or while you're <strong>on vacation</strong>.</p>
|
||||
<div class="blog_video_player_wrap" style="max-width: 600px; margin: 20px auto 20px;">
|
||||
<video class="blog_video_player tl_blog_vid_autoplay" onclick="videoTogglePlay(this)" autoplay loop controls muted poster="/file/400780400279/2/f8CF9XNCg3g.71575/96d622ec6068910d54" style="max-width: 600px;" title="" alt="Away Message">
|
||||
<source src="/file/400780400402/1/Iaoy5vAS9oM.3056160.mp4/e0c850015dde60e317" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
|
||||
<p>This way people will always know when they can expect a response from your business.</p>
|
||||
<blockquote>
|
||||
<p>To prevent sending business messages to friends, family, or employees, you can limit any automated messages to <strong>exclude specific chats</strong> or entire <strong>chat categories</strong>.</p>
|
||||
</blockquote>
|
||||
<h4><a class="anchor" name="tags-for-chats" href="#tags-for-chats"><i class="anchor-icon"></i></a>Tags for Chats</h4>
|
||||
<p>With Telegram Business or Premium, you can add <strong>colored labels</strong> to chats, giving them unique tags based on the <a href="https://telegram.org/tour/chat-folders">chat folders</a> they are in. </p>
|
||||
<div class="blog_video_player_wrap" style="max-width: 600px; margin: 20px auto 20px;">
|
||||
<video class="blog_video_player tl_blog_vid_autoplay" onclick="videoTogglePlay(this)" autoplay loop controls muted poster="/file/400780400313/3/kLuKPKjpwNA.75534/f2d1b60fa8987afc0b" style="max-width: 600px;" title="TITLE" alt="TITLE">
|
||||
<source src="/file/400780400655/1/6OnmkgzaE3A.2232737.mp4/1ed089e4c74c58ecbb" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
|
||||
<p>This helps you quickly differentiate between customers in your chat list based on their status, needs, or priority level.</p>
|
||||
<blockquote>
|
||||
<p>All Telegram users can create custom <a href="https://telegram.org/tour/chat-folders">chat folders</a> to organize their chats – adding <strong>separate tabs</strong> to the chat list for <em>Work</em>, <em>School</em>, <em>News</em> and more.</p>
|
||||
</blockquote>
|
||||
<h4><a class="anchor" name="links-to-chat" href="#links-to-chat"><i class="anchor-icon"></i></a>Links to Chat</h4>
|
||||
<p>To make it even easier for customers to reach out, you can create <strong>links to chat</strong> with your business – like a button to <strong>reserve a table</strong> or <strong>track an order</strong>. When tapped, these links instantly <strong>open a chat</strong> with you and <strong>paste a suggested message</strong> for the user.</p>
|
||||
<div class="blog_video_player_wrap" style="max-width: 600px; margin: 20px auto 20px;">
|
||||
<video class="blog_video_player tl_blog_vid_autoplay" onclick="videoTogglePlay(this)" autoplay loop controls muted poster="/file/400780400168/1/juKEOD7nWWE.70157/29f26f9acea85e4053" style="max-width: 600px;" title="" alt="Links to Chat">
|
||||
<source src="/file/400780400403/3/v6u75i_FgAQ.5750575.mp4/384c0cd8cf52d3d4a1" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
|
||||
<p>You can use these links both inside and <strong>outside of Telegram</strong> – from a link on your site to a <strong>QR code</strong> on a restaurant menu.</p>
|
||||
<blockquote>
|
||||
<p>Each link shows <strong>how many times</strong> it was tapped so you can <strong>track its performance</strong>.</p>
|
||||
</blockquote>
|
||||
<h4><a class="anchor" name="chatbots-for-business" href="#chatbots-for-business"><i class="anchor-icon"></i></a>Chatbots for Business</h4>
|
||||
<p>Business users can connect Telegram bots that will process and answer messages <strong>on their behalf</strong>. This allows businesses to <strong>seamlessly integrate</strong> any existing tools and workflows, or add <strong>AI assistants</strong> that manage their chats.</p>
|
||||
<div class="blog_video_player_wrap" style="max-width: 600px; margin: 20px auto 20px;">
|
||||
<video class="blog_video_player tl_blog_vid_autoplay" onclick="videoTogglePlay(this)" autoplay loop controls muted poster="/file/400780400238/1/x875tPT245w.58064/1b426d3eda0a923c03" style="max-width: 600px;" title="" alt="Chatbots for Business">
|
||||
<source src="/file/400780400382/1/BVN6m4W5a6w.4289566.mp4/9dc47caab261eaade4" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
|
||||
<p>When adding a chatbot, you can configure <strong>which chats</strong> the bot can access – such as excluding all chats with <strong>your contacts</strong>, or only responding to <strong>new chats</strong>.</p>
|
||||
<blockquote>
|
||||
<p>This opens a <strong>new era</strong> for Telegram Bots – we welcome all developers to create new services that will help businesses automate and improve their communication with Telegram users. See our <a href="https://core.telegram.org/bots">Bot Manuals</a> for details.</p>
|
||||
</blockquote>
|
||||
<p>Telegram will be introducing new features for businesses in the coming updates. For the moment, all <strong>Telegram Business</strong> features are available <strong>for free</strong> to <strong>Premium</strong> subscribers. You can find them in <em>Settings > Telegram Business</em>.</p>
|
||||
<div><br></div>
|
||||
|
||||
<p><em>March 31, 2024<br>The Telegram Team</em></p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="tl_main_share clearfix">
|
||||
<a href="https://t.me/share/url?url=https%3A%2F%2Ftelegram.org%2Fblog%2Ftelegram-business&text=Starting%20today%2C%20anyone%20can%20turn%20their%20Telegram%20account%20into%20a%20business%20account%C2%A0%E2%80%93%20and%20get%20access%20to%20business%20features%2C%20such%20as%20opening%20hours%2C%20location%2C%20quick%20replies%2C%20automated%20messages%2C%20custom%20start%20page%2C%20chatbot%20support%2C%20and%20more." class="tl_telegram_share_btn" id="tl_telegram_share_btn" data-text="Starting today, anyone can turn their Telegram account into a business account – and get access to business features, such as opening hours, location, quick replies, automated messages, custom start page, chatbot support, and more." data-url="https://telegram.org/blog/telegram-business"><i class="tl_telegram_share_icon"></i><span class="tl_telegram_share_label" target="_blank">Forward</span></a>
|
||||
<a href="https://twitter.com/share" class="tl_twitter_share_btn" id="tl_twitter_share_btn" data-text="Starting today, anyone can turn their Telegram account into a business account – and get access to business features, such as opening hours, location, quick replies, automated messages, custom start page, chatbot support, and more." data-url="https://telegram.org/blog/telegram-business" data-via="Telegram">Tweet <span class="tl_twitter_share_cnt"></span></a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="tl_main_recent_news_wrap tlb_other_news_wrap tl_blog_list_page_wrap">
|
||||
<h3 class="tl_main_recent_news_header">
|
||||
<a href="/blog">Other News</a>
|
||||
</h3>
|
||||
<div class="tl_main_recent_news_cards clearfix">
|
||||
<a class="dev_blog_card_link_wrap" href="/blog/monetization-for-channels"><div class="dev_blog_card_wrap">
|
||||
<img class="dev_blog_card_image" src="https://telegram.org/file/400780400191/1/EVk7lrjHV1k.216056/76e92be4b951903eeb" />
|
||||
<div class="dev_blog_card_alltext_wrap">
|
||||
<h4 class="dev_blog_card_title">Sharing Revenue with Channel Owners</h4>
|
||||
<div class="dev_blog_card_lead">Today, we're introducing one of the most generous reward systems in the history of social media. Telegram channel owners can now receive 50% of the revenue from ads displayed in their…</div>
|
||||
</div>
|
||||
<div class="dev_blog_card_date">Mar 31, 2024</div>
|
||||
</div></a><a class="dev_blog_card_link_wrap" href="/blog/february2024"><div class="dev_blog_card_wrap">
|
||||
<img class="dev_blog_card_image" src="https://telegram.org/file/400780400044/4/Q1UaSDMMPHI.306200/1704172cc8fc21b436" />
|
||||
<div class="dev_blog_card_alltext_wrap">
|
||||
<h4 class="dev_blog_card_title">Stories for Groups and 8 More Features</h4>
|
||||
<div class="dev_blog_card_lead">Telegram brings conversation in groups to an entire new level with 9 new features that redefine many-to-many communication. Now, groups can publish stories and save them as posts on…</div>
|
||||
</div>
|
||||
<div class="dev_blog_card_date">Feb 29, 2024</div>
|
||||
</div></a><a class="dev_blog_card_link_wrap" href="/blog/new-saved-messages-and-9-more"><div class="dev_blog_card_wrap">
|
||||
<img class="dev_blog_card_image" src="https://telegram.org/file/400780400296/1/9NHuUm1khJE.300782/913468ac6a12d3161d" />
|
||||
<div class="dev_blog_card_alltext_wrap">
|
||||
<h4 class="dev_blog_card_title">Saved Messages 2.0, One-Time Voice Messages and 8 More Features</h4>
|
||||
<div class="dev_blog_card_lead">Throughout January, we added 10 new features to Telegram – including upgraded Saved Messages, one-time voice and video messages that delete…</div>
|
||||
</div>
|
||||
<div class="dev_blog_card_date">Jan 31, 2024</div>
|
||||
</div></a><a class="dev_blog_card_link_wrap" href="/blog/calls-and-bots"><div class="dev_blog_card_wrap">
|
||||
<img class="dev_blog_card_image" src="https://telegram.org/file/400780400149/1/BSY3rQYfUhs.332063/6b257c0dc671d7be2c" />
|
||||
<div class="dev_blog_card_alltext_wrap">
|
||||
<h4 class="dev_blog_card_title">Colorful Calls, Thanos Snap Effect, and an Epic Update for Bots</h4>
|
||||
<div class="dev_blog_card_lead">Telegram's 10th update of 2023 adds improved calls with a colorful new design that use less of your phone's battery, a new vaporize effect…</div>
|
||||
</div>
|
||||
<div class="dev_blog_card_date">Dec 31, 2023</div>
|
||||
</div></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer_wrap">
|
||||
<div class="footer_columns_wrap footer_desktop">
|
||||
<div class="footer_column footer_column_telegram">
|
||||
<h5>Telegram</h5>
|
||||
<div class="footer_telegram_description"></div>
|
||||
Telegram is a cloud-based mobile and desktop messaging app with a focus on security and speed.
|
||||
</div>
|
||||
|
||||
<div class="footer_column">
|
||||
<h5><a href="/faq">About</a></h5>
|
||||
<ul>
|
||||
<li><a href="/faq">FAQ</a></li>
|
||||
<li><a href="/privacy">Privacy</a></li>
|
||||
<li><a href="/press">Press</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/apps#mobile-apps">Mobile Apps</a></h5>
|
||||
<ul>
|
||||
<li><a href="/dl/ios">iPhone/iPad</a></li>
|
||||
<li><a href="/android">Android</a></li>
|
||||
<li><a href="/dl/web">Mobile Web</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/apps#desktop-apps">Desktop Apps</a></h5>
|
||||
<ul>
|
||||
<li><a href="//desktop.telegram.org/">PC/Mac/Linux</a></li>
|
||||
<li><a href="//macos.telegram.org/">macOS</a></li>
|
||||
<li><a href="/dl/web">Web-browser</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer_column footer_column_platform">
|
||||
<h5><a href="//core.telegram.org/">Platform</a></h5>
|
||||
<ul>
|
||||
<li><a href="//core.telegram.org/api">API</a></li>
|
||||
<li><a href="//translations.telegram.org/">Translations</a></li>
|
||||
<li><a href="//instantview.telegram.org/">Instant View</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer_columns_wrap footer_mobile">
|
||||
<div class="footer_column">
|
||||
<h5><a href="/faq">About</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/blog">Blog</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/apps">Apps</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="//core.telegram.org/">Platform</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/press">Press</a></h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="/js/main.js?47"></script>
|
||||
<script src="/js/tgsticker.js?31"></script>
|
||||
|
||||
<script>initScrollVideos(true);
|
||||
mainInitTgStickers({"maxDeviceRatio":2,"cachingModulo":4});
|
||||
twitterCustomShareInit();
|
||||
blogSideImageInit();
|
||||
backToTopInit("Go up");
|
||||
removePreloadInit();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -57,9 +57,11 @@ Use our service to send spam or scam users.…">
|
|||
</ul>
|
||||
<p>We reserve the right to update these Terms of Service later.</p>
|
||||
<blockquote>
|
||||
<p>Citizens of EU countries and the United Kingdom must be at least 16 years old to sign up.</p>
|
||||
<p>Citizens of EU countries and the United Kingdom must be at least 18 years old to sign up.</p>
|
||||
</blockquote>
|
||||
<hr>
|
||||
<p>If you access certain optional features and services on the Telegram platform, you will be additionally bound by their specific terms – such as the Terms of Service for <a href="https://telegram.org/tos#terms-of-service-for-telegram-premium">Telegram Premium</a>, <a href="https://telegram.org/tos/business">Telegram Business</a>, <a href="https://telegram.org/tos/bots">Bot Users</a>, <a href="https://telegram.org/tos/mini-apps">Mini App Users</a>, <a href="https://telegram.org/tos/content-creator-rewards">Revenue Sharing with Content Creators</a>, <a href="https://core.telegram.org/api/terms">Telegram API Developers</a> and <a href="https://telegram.org/tos/bot-developers">Bot Developers</a>.</p>
|
||||
<hr>
|
||||
<h2><a class="anchor" name="terms-of-service-for-telegram-premium" href="#terms-of-service-for-telegram-premium"><i class="anchor-icon"></i></a>Terms of Service for Telegram Premium</h2>
|
||||
<p>Telegram is a <strong>free application</strong> that provides a wide range of services, including unlimited cloud storage, 2 GB file uploads, audio and video calls, group chats up to 200,000 members, support for multiple devices, and <a href="https://t.me/telegramtips">more</a>, free of charge. Some additional services, such as Telegram Premium, may be available for purchase in certain countries – offering an even more powerful messaging experience and a chance to support the continuing development of the Telegram platform.</p>
|
||||
<h3><a class="anchor" name="1-introduction" href="#1-introduction"><i class="anchor-icon"></i></a>1. Introduction</h3>
|
||||
|
@ -101,7 +103,8 @@ Use our service to send spam or scam users.…">
|
|||
</blockquote>
|
||||
<h3><a class="anchor" name="7-the-scope-of-premium-services" href="#7-the-scope-of-premium-services"><i class="anchor-icon"></i></a>7. The Scope of Premium Services</h3>
|
||||
<h4><a class="anchor" name="7-1-included-services" href="#7-1-included-services"><i class="anchor-icon"></i></a>7.1. Included Services</h4>
|
||||
<p>The services included in the Telegram Premium subscription (“Premium Services”) are listed in the Premium Section. From time to time, we may add new items into the Premium Services. We may also remove some of the existing Premium Services if we are no longer able to provide them for legal or technical reasons. In addition, some Premium Services may become free of charge for all Telegram users in the future or be offered as a separate membership tier.</p>
|
||||
<p>The services included in the Telegram Premium subscription (“Premium Services”) are listed in the Premium Section. From time to time, we may add new items into the Premium Services, including limited-time or promotional access to additional paid features and subscriptions, such as <a href="https://telegram.org/blog/telegram-business">Telegram Business</a>. In such cases, your access to those features is further subject to their specific Terms of Service.</p>
|
||||
<p>We may also remove some of the existing Premium Services if we are no longer able to provide them for legal or technical reasons. In addition, some Premium Services may become free of charge for all Telegram users in the future or be offered as a separate membership tier.</p>
|
||||
<h4><a class="anchor" name="7-2-availability" href="#7-2-availability"><i class="anchor-icon"></i></a>7.2. Availability</h4>
|
||||
<p>Telegram strives to make its services available for all users all the time, but occasional technical issues may occur, temporarily preventing us from delivering services, including Premium Services, to our users. Telegram will not compensate you for any direct or indirect loss resulting from our temporary inability to provide any free or paid services.</p>
|
||||
<p>Premium Services are available on major Telegram clients, such as the official iOS and Android apps. Some Telegram apps made by Telegram or by third parties may not offer all Premium Services immediately after they are launched or at all.</p>
|
||||
|
|
269
data/web/telegram.org/tos/bot-developers.html
Normal file
269
data/web/telegram.org/tos/bot-developers.html
Normal file
|
@ -0,0 +1,269 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Telegram Bot Platform Developer Terms of Service</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta property="og:title" content="Telegram Bot Platform Developer Terms of Service">
|
||||
<meta property="og:image" content="">
|
||||
<meta property="og:site_name" content="Telegram">
|
||||
<meta property="og:description" content="Bots and Mini Apps (collectively, “Third Party Apps” or “TPA”) are third party applications that integrate into Telegram…">
|
||||
|
||||
|
||||
<meta property="fb:app_id" content="254098051407226">
|
||||
<meta property="vk:app_id" content="3782569">
|
||||
<meta name="apple-itunes-app" content="app-id=686449807">
|
||||
<meta name="telegram:channel" content="@telegram">
|
||||
|
||||
<link rel="icon" type="image/svg+xml" href="/img/website_icon.svg?4">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon-16x16.png">
|
||||
<link rel="alternate icon" href="/img/favicon.ico" type="image/x-icon" />
|
||||
<link href="/css/bootstrap.min.css?3" rel="stylesheet">
|
||||
|
||||
<link href="/css/telegram.css?236" rel="stylesheet" media="screen">
|
||||
</head>
|
||||
<body class="preload">
|
||||
<div id="fb-root"></div>
|
||||
<div class="tl_page_wrap">
|
||||
<div class="tl_page_head navbar navbar-static-top navbar navbar-tg">
|
||||
<div class="navbar-inner">
|
||||
<div class="container clearfix">
|
||||
<ul class="nav navbar-nav navbar-right"><li class="dropdown top_lang_select"><a class="dropdown-toggle" onclick="return dropdownClick(this, event)" href="#"><i class="dev_top_lang_icon"></i>EN <b class="minicaret"></b></a>
|
||||
<ul class="dropdown-menu"><li class="chosen "><a href="?setln=en">English</a></li><li class="long "><a href="?setln=id">Bahasa Indonesia</a></li><li class="long "><a href="?setln=ms">Bahasa Melayu</a></li><li class=""><a href="?setln=de">Deutsch</a></li><li class=""><a href="?setln=es">Español</a></li><li class=""><a href="?setln=fr">Français</a></li><li class=""><a href="?setln=it">Italiano</a></li><li class=""><a href="?setln=nl">Nederlands</a></li><li class=""><a href="?setln=uz">O‘zbek</a></li><li class=""><a href="?setln=pl">Polski</a></li><li class="long "><a href="?setln=pt-br">Português (Brasil)</a></li><li class=""><a href="?setln=tr">Türkçe</a></li><li class=""><a href="?setln=be">Беларуская</a></li><li class=""><a href="?setln=ru">Русский</a></li><li class=""><a href="?setln=uk">Українська</a></li><li class=""><a href="?setln=ar">العربية</a></li><li class=""><a href="?setln=fa">فارسی</a></li><li class=""><a href="?setln=ko">한국어</a></li></ul></li><li class="navbar-twitter hidden-xs"><a href="https://twitter.com/telegram" target="_blank" data-track="Follow/Twitter" onclick="trackDlClick(this, event)"><i class="icon icon-twitter"></i> Twitter</a></li></ul>
|
||||
<ul class="nav navbar-nav">
|
||||
<li class=""><a href="/">Home</a></li>
|
||||
<li class=""><a href="/faq">FAQ</a></li>
|
||||
<li class=""><a href="/apps">Apps</a></li>
|
||||
<li class="hidden-xs "><a href="//core.telegram.org/api">API</a></li>
|
||||
<li class="hidden-xs "><a href="//core.telegram.org/mtproto">Protocol</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container clearfix tl_page_container ">
|
||||
<div class="tl_page">
|
||||
<div id="dev_page_content_wrap" class=" ">
|
||||
<div class="dev_page_bread_crumbs"></div>
|
||||
<h1 id="dev_page_title">Telegram Bot Platform Developer Terms of Service</h1>
|
||||
|
||||
<div id="dev_page_content"><p>Bots and Mini Apps (collectively, “<strong>Third Party Apps</strong>” or “<strong>TPA</strong>”) are third party applications that integrate into Telegram and its interfaces, allowing developers to offer tools, products and services through the Telegram ecosystem, which users may access using Telegram clients.</p>
|
||||
<p>Developers can operate their TPA by interfacing with the Bot API (“<strong>Bot API</strong>”) made available by Telegram for this purpose. The Bot API, along with Bot and Mini App in-app native interfaces and integrations, and all other associated tools, documentation, frameworks and services made available by Telegram collectively comprise the Telegram Bot Platform (“<strong>Bot Platform</strong>”).</p>
|
||||
<p>These Terms of Service for Bot Platform Developers (“**Bot Developer Terms** or <strong>these terms</strong>) govern your usage of the Telegram Bot Platform for the purposes of developing services that integrate it or function in connection with it, and constitute a legally binding agreement between you and Telegram Messenger Inc. (“<strong>Telegram</strong>”). For the purposes of these Terms, ‘we’, ‘us’ and ‘our’ refers to Telegram, and ‘you’ refers to you, the developer of TPA.</p>
|
||||
<h3><a class="anchor" name="1-acceptance-of-bot-platform-developer-terms" href="#1-acceptance-of-bot-platform-developer-terms"><i class="anchor-icon"></i></a>1. Acceptance of Bot Platform Developer Terms</h3>
|
||||
<p>By connecting your services to Telegram via Bot Platform, you agree that you have read in full, understood and accepted to be legally bound by the terms contained herein, in addition to the <a href="https://telegram.org/tos">Telegram Terms of Service</a> and <a href="https://telegram.org/privacy">Telegram Privacy Policy</a>. All of the aforementioned terms may be amended from time to time at our sole discretion.</p>
|
||||
<p>For clarity, your continued access to and use of Bot Platform, including the continued operation of any TPA owned by you, shall constitute your acceptance of these Bot Developer Terms and all other terms that are incorporated herein, including any updates or modifications to them from time to time.</p>
|
||||
<h3><a class="anchor" name="2-scope" href="#2-scope"><i class="anchor-icon"></i></a>2. Scope</h3>
|
||||
<p>Developers can make their products and services accessible in Telegram apps by building TPA and connecting them to the Telegram platform via Bot API. TPA are hosted on their developers’ own servers, and are third-party services that Telegram allows to have a presence in Telegram apps, provided they comply with the <a href="https://telegram.org/tos">Terms of Service for Telegram</a>, these terms, and any other applicable agreements. Telegram has no affiliation with or connection to any TPA or TPA developers, unless otherwise stated.</p>
|
||||
<p>Accordingly, you understand and acknowledge that all TPA are operated by third parties, unless otherwise stated by Telegram as the case may be. Some TPA may have a verified status in Telegram apps. This status is assigned at Telegram’s sole discretion and serves solely to help distinguish authentic and official bots from other similar bots or imitators; the status does not represent any form of endorsement of the TPA, its owner or the content it uploads.</p>
|
||||
<h4><a class="anchor" name="2-1-independent-participation" href="#2-1-independent-participation"><i class="anchor-icon"></i></a>2.1. Independent Participation</h4>
|
||||
<p>You understand and agree that your association with us is exclusively as a user of our services, functioning as an independent entity. These terms and your engagement with Bot Platform do not establish any form of agency, partnership, employment or joint venture between you and Telegram. You are expressly forbidden from representing yourself as anything other than an independent third-party as it pertains to your engagement with Bot Platform and, by extension, with Telegram.</p>
|
||||
<h3><a class="anchor" name="3-availability" href="#3-availability"><i class="anchor-icon"></i></a>3. Availability</h3>
|
||||
<p>Bot Platform, some of its features, as well as individual TPA may not be available to certain users (both as users of TPA services and as developers), on certain Telegram clients or within certain geographical regions, in accordance with current demand, technological limitations, economic considerations, regulatory restrictions and other factors.</p>
|
||||
<p>Consequently, you acknowledge and agree that the availability of Bot Platform, and, by extension, access to the creation, operation and usage of TPA or some of their features for both you and your TPA users may change at any time, and we are not obligated to provide advance notice, compensation or explanations for any such changes.</p>
|
||||
<h3><a class="anchor" name="4-privacy" href="#4-privacy"><i class="anchor-icon"></i></a>4. Privacy</h3>
|
||||
<p>Telegram only stores the data it needs to function as a secure and feature-rich messaging service, and your TPA are expected and required to do the same. Furthermore, without limiting the stipulations set out in <a href="#8-compliance-with-laws">Section 8</a>, you hereby agree to adhere strictly to all privacy laws and regulations that are applicable for you and for the users of your TPA. In any case, all data you obtain through or in connection with Bot Platform must be stored and handled strictly in compliance with the stipulations articulated in the <a href="https://telegram.org/tos">Telegram Terms of Service</a>, the <a href="https://telegram.org/privacy">Telegram Privacy Policy</a>, applicable legal and regulatory frameworks, and these terms. </p>
|
||||
<p>If you choose to mandate that your users agree to an additional Privacy Policy before accessing your TPA, then said Privacy Policy cannot conflict, amend or exhibit any discrepancies with the stipulations of the aforementioned Terms. Should any inconsistency arise, these Terms and the <a href="https://telegram.org/privacy">Telegram Privacy Policy</a> will prevail.</p>
|
||||
<h4><a class="anchor" name="4-1-what-data-we-share-with-you" href="#4-1-what-data-we-share-with-you"><i class="anchor-icon"></i></a>4.1. What data we share with you</h4>
|
||||
<p>The data your TPA may receive as part of their standard operation within Telegram is listed in our <a href="https://telegram.org/privacy#6-bot-messages">Privacy Policy</a>, see <a href="https://telegram.org/privacy#6-3-what-data-bots-receive">6.3. What Data Bots Receive</a>.</p>
|
||||
<p>You may request additional data from your users at your and their discretion, as agreed between you and them. However, you are strictly prohibited from attempting to deceive or mislead users with the purpose of evading or partially circumventing the limitations and protections that Telegram has established concerning the data you may access.</p>
|
||||
<h4><a class="anchor" name="4-2-data-storage-and-retention" href="#4-2-data-storage-and-retention"><i class="anchor-icon"></i></a>4.2. Data Storage and Retention</h4>
|
||||
<p>Without limiting <a href="#4-privacy">Sections 4</a> and <a href="#9-termination">9</a>, and except as expressly required by applicable law, Telegram imposes certain obligations regarding the degree to which you may continue to retain user data over time. You acknowledge and agree that failing to comply with any such obligation may lead to the immediate termination of your account, your TPA, or both. Namely, insofar as you are allowed to do so under applicable law, you must, without undue delay:</p>
|
||||
<p>(a) Delete user data upon their (or our, as the case may be) request that you do so;<br>(b) Delete user data when retention thereof becomes unnecessary to operate your TPA or to fulfill any other obligation as the case may be and as expressly agreed between you and your users;<br>(c) Delete all user data obtained through or in connection with Bot Platform upon the cessation of your TPA's operations therein, except for data that users have expressly agreed can be retained, which may be kept until such agreement remains in effect;<br>(d) Delete all user data obtained through or in connection with Bot Platform in response to a lawful request from an authorized legal entity;</p>
|
||||
<h4><a class="anchor" name="4-3-data-scraping" href="#4-3-data-scraping"><i class="anchor-icon"></i></a>4.3. Data Scraping</h4>
|
||||
<p>You agree not to use your TPA to collect, store, aggregate or process data beyond what is essential for the operation of your services. Always prohibited uses include any form of data collection aimed at creating large datasets, machine learning models and AI products, such as scraping public group or channel contents.</p>
|
||||
<p>Without limiting the foregoing, you are free to use data submitted directly and voluntarily to your TPA by users, provided that you clearly inform them of the data's intended use and they give their individual, explicit, active and revocable consent.</p>
|
||||
<h4><a class="anchor" name="4-4-best-security-practices" href="#4-4-best-security-practices"><i class="anchor-icon"></i></a>4.4. Best Security Practices</h4>
|
||||
<p>You understand and agree that it is your responsibility to employ all reasonable efforts to protect any data you receive from or in connection with Bot Platform, and to engage with it securely, having read and understood the associated official documentation.</p>
|
||||
<p>At a minimum, you must:</p>
|
||||
<ul>
|
||||
<li>(a) Make sure user data is always encrypted at rest and stored separately from its encryption key;</li>
|
||||
<li>(b) Alert your users of any data breach you sustained, in accordance with applicable laws;</li>
|
||||
<li>(c) Operate your TPA in a reasonably secure environment, having done due diligence in vetting the equipment, systems, hardware (if applicable), libraries and tools used to deploy and operate your software;</li>
|
||||
<li>(d) Make all efforts to immediately remediate any data leak, security breach or significant malfunction that may potentially put the privacy or security of users at risk;</li>
|
||||
<li>(e) Employ all required security checks, as applicable and as documented, when engaging with Bot Platform features that require them (e.g., <a href="https://core.telegram.org/widgets/login#receiving-authorization-data">Login Widgets Auth Data</a>)</li>
|
||||
<li>(d) Take reasonable efforts to protect your TPA from malicious clients, researching and understanding what impact they may have (e.g., <a href="WebAppData">Arbitrary Data in WebAppData</a>).</li>
|
||||
</ul>
|
||||
<p>Without limiting the foregoing, you understand and agree that Telegram employs every effort to mitigate all security risks for its users, but will not be liable for any damages, losses or privacy breaches they may incur as a result of your negligence or inability to follow best security practices, including but not limited to the non-exhaustive list of requirements set out above.</p>
|
||||
<h4><a class="anchor" name="4-5-credentials" href="#4-5-credentials"><i class="anchor-icon"></i></a>4.5. Credentials</h4>
|
||||
<p>To access Bot Platform and other Telegram APIs or tools, Telegram may provide some confidential credentials to you, such as an API ID, hash, secure tokens, and other necessary credentials as the case may be. These credentials are intended solely for the operation of the products and services you offer through Telegram APIs, and, without limiting the foregoing, you are explicitly prohibited from making them available to the public. You understand and agree that any actions taken by others who authenticate using your credentials will be deemed as taken by you, regardless of how they gained possession of the credentials.</p>
|
||||
<h3><a class="anchor" name="5-code-of-conduct" href="#5-code-of-conduct"><i class="anchor-icon"></i></a>5. Code of Conduct</h3>
|
||||
<p>The following details the fundamental operating requirements of TPA on the Telegram platform. In addition to the stipulations below, you also agree to use Bot Platform in good faith, for the benefit of its users and to enrich the overall Telegram ecosystem. Failing to do so may result in restrictions on or termination of your participation in Bot Platform, as well as of your accounts in Telegram apps.</p>
|
||||
<p>Additional local laws and regulations may apply to your TPA. It is your responsibility to ensure that your TPA complies with all applicable legislation therein, and Telegram will not be liable for any violations or actions on behalf of your TPA.</p>
|
||||
<h4><a class="anchor" name="5-1-content" href="#5-1-content"><i class="anchor-icon"></i></a>5.1. Content</h4>
|
||||
<p>The content hosted on your TPA must comply with the <a href="https://telegram.org/tos">Telegram Terms of Service</a>. You are responsible for any content uploaded by your TPA, including the moderation of user-generated content that is accessible via your TPA, and agree that Telegram may also intervene to moderate content hosted by your TPA, but is not obligated to do so.</p>
|
||||
<h4><a class="anchor" name="5-2-operation" href="#5-2-operation"><i class="anchor-icon"></i></a>5.2. Operation</h4>
|
||||
<p>You understand and agree that your TPA must operate fully within the bounds of the rules set out below at all times. Should Telegram in its sole discretion determine that your TPA did not operate well within these guidelines at any point in time, it may terminate your TPA, your account, or both. Furthermore, violators may face legal consequences pursuant to relevant laws and regulations they undermined. In particular:</p>
|
||||
<ul>
|
||||
<li>(a) Any communication, actions, provided services or functions of your TPA must comply with the Telegram Terms of Service;</li>
|
||||
<li>(b) Your TPA must not harass or spam users with unsolicited messages;</li>
|
||||
<li>(c) You and your TPA (including its name, username and branding) must not impersonate (both explicitly and implicitly or by association) Telegram or any entity which did not authorize you to represent them;</li>
|
||||
<li>(d) Your TPA (including its name, username and branding) must not misrepresent the services or functions it provides, including but not limited to misleading users into performing certain actions in the pursuit of an unachievable outcome. Without limiting the foregoing and by way of example, the following use cases are forbidden</li>
|
||||
<li>(i) MLM or ponzi schemes</li>
|
||||
<li>(ii) Social growth manipulation</li>
|
||||
<li>(iii) Deceptive practices to collect personal information (i.e., phishing scams)</li>
|
||||
<li>(iv) Asking users for their Telegram password or OTP</li>
|
||||
<li>(v) Misrepresenting an illegal product as legally purchasable.</li>
|
||||
<li>(e) You must not leverage your TPA and, by extension, Bot Platform in conjunction with external interfaces (i.e., frontends), frameworks or tools, to develop external services or applications that diverge significantly from the intended use cases of Bot Platform (e.g., cloud storage sites).</li>
|
||||
<li>(f) Your TPA must not attempt to circumvent or otherwise undermine Telegram rate limits and moderation. Without limiting the foregoing and by way of example, your TPA must not operate by proxy (i.e., using Bot API credentials supplied by other users) in an attempt to circumvent bans or content moderation. </li>
|
||||
<li>(g) Your TPA must not be used to distribute (or itself be part of) malware or other harmful software or content;</li>
|
||||
<li>(h) Your TPA must not be used to provide, link to, aggregate, host, index, distribute, lend out, exchange, trade, rent, sell or facilitate the sale of illegal, pirated, regulated or questionable goods and services.</li>
|
||||
<li>(i) Your TPA must not upload, promote or facilitate the spread of violence, hate speech, harassment, violent threats, personal information or media belonging to unconsenting third parties and similar content.</li>
|
||||
</ul>
|
||||
<p>Without limiting the foregoing, you understand and agree that your TPA must behave in a reasonably predictable manner at all times. That is, it cannot use its privileges (moderation permissions, private chat management via Telegram Business, etc.) to carry out actions that diverge from the purposes under which the privileges were originally obtained. For clarity, this means that users must always be informed of any significant changes pertaining to the operational scope of your TPA, and should be given an option to opt out of these changes.</p>
|
||||
<h4><a class="anchor" name="5-3-interface" href="#5-3-interface"><i class="anchor-icon"></i></a>5.3. Interface</h4>
|
||||
<p>The interface of your TPA should ideally be complementary to that of Telegram apps, and Bot Platform provides several components that facilitate this. In any case, your TPA must always ensure that interface elements are functional (e.g., flyouts and pop-up windows can be closed, etc.) and do not intrude or obstruct the user’s ability to perform actions within Telegram apps. Similarly, you are prohibited from altering or misrepresenting any component or dialog of your TPA interface to falsely appear as notifications or alerts originating from Telegram, the user’s operating system or browser, or any third parties who have not granted you authorization to represent them.</p>
|
||||
<h4><a class="anchor" name="5-4-telegram-business" href="#5-4-telegram-business"><i class="anchor-icon"></i></a>5.4. Telegram Business</h4>
|
||||
<p>Telegram Business subscribers may choose to connect a Telegram Bot to their account at their discretion, to streamline the process of managing and possibly replying to incoming messages in a subset of private chats of their choosing.</p>
|
||||
<p>If your TPA supports being designated as a Chatbot under Telegram Business, without limiting the Terms set out in this agreement, you additionally agree to:</p>
|
||||
<ul>
|
||||
<li>(i) Clearly and truthfully represent the full extent of the services provided by your bot through Telegram Business;</li>
|
||||
<li>(ii) If applicable and without limiting 4.2., clearly state what private user data you will retain, how long you will store it and for what purpose;</li>
|
||||
<li>(iii) Never use message contents, files or other data you obtained or processed through Telegram Business for any other purpose than providing your services as a business Chatbot;</li>
|
||||
<li>(iv) Without limiting 4.2., never disclose message contents, files or other data you obtained or processed through or in connection with Telegram Business to third parties (including third-party APIs) without the user's authorization;</li>
|
||||
<li>(v) Never attempt to conceal any activity carried out by your TPA from the business account owner;</li>
|
||||
<li>(vi) Promptly notify your business users of any significant changes to your TPA and how they operate, enabling them to make the informed choice of opting out;</li>
|
||||
</ul>
|
||||
<p>Without limiting the foregoing, you understand and agree that violating any of the aforementioned obligations may lead to the immediate and permanent ban of your TPA and your account from the Telegram platform, as well as legal action taken against you, your associates, and those acting on your behalf as the case may be.</p>
|
||||
<h3><a class="anchor" name="6-payments" href="#6-payments"><i class="anchor-icon"></i></a>6. Payments</h3>
|
||||
<p>Telegram does not process payments. Instead, Bot Platform provides a set of APIs that allow developers to interface solely and directly with third-party payment providers for the purposes of receiving payments. For clarity, neither Telegram nor Bot Platform oversee, verify, guarantee, or process payments and financial transactions between you and users of your TPA. Additionally, we neither hold nor have custody of TPA users' funds at any point before, during and after transactions between you and them, and we do not act as a financial intermediary in any capacity. You may choose a payment provider at your discretion and according to their availability in your regions of interest, from the list of <a href="https://core.telegram.org/bots/payments#supported-payment-providers">available payment providers</a>.</p>
|
||||
<h4><a class="anchor" name="6-1-payment-information" href="#6-1-payment-information"><i class="anchor-icon"></i></a>6.1. Payment Information</h4>
|
||||
<p>Telegram does not store credit card details for purchases made via TPA. Such data is handled solely by third-party payment providers. See our <a href="https://telegram.org/privacy#7-third-party-payment-services">Privacy Policy</a> for more details.</p>
|
||||
<h4><a class="anchor" name="6-2-payment-disputes" href="#6-2-payment-disputes"><i class="anchor-icon"></i></a>6.2. Payment Disputes</h4>
|
||||
<p>Payments conducted or initiated through TPA are processed by a third-party payment provider, as agreed between you and the payment provider. </p>
|
||||
<p>Telegram does not handle, manage, oversee, verify or provide any sort of warranty over such transactions. Consequently, you understand and agree that any disputes, claims, losses, misunderstandings, technical errors, or issues of any kind (both accidental and allegedly intentional) related to payments or transactions must be resolved between yourself, the purchaser and the respective payment provider, when applicable. Telegram bears no responsibility whatsoever and will not be a party to any payment-related disputes or discussions, nor is it liable for any losses or damages the parties involved may incur.</p>
|
||||
<h4><a class="anchor" name="6-3-asset-management" href="#6-3-asset-management"><i class="anchor-icon"></i></a>6.3. Asset Management</h4>
|
||||
<p>By using or offering your TPA as a means of storing, handling or processing financial assets (including cryptocurrency), you accept that it is your responsibility to ensure that any assets, credentials or other information is stored securely. You understand that Telegram may delete or make inaccessible whole chats, messages, media and files sent to and from your TPA at any time. In general, Telegram makes no guarantee that any data it stores in connection with your TPA, including but not limited to key-value pairs in the Telegram Cloud Storage for Bots and Mini Apps, will remain available, uncorrupted or fit for any particular purpose. </p>
|
||||
<p>Therefore, you are expected to design your application and its persistence paradigms in a manner that effectively nullifies the impact of partially or fully losing any data that is typically provided by Bot Platform. Similarly, you should not assume that the availability of any such data from Telegram will be perpetual or for a specific duration, even if otherwise stated in the relevant documentation or source code. Accordingly, you expressly understand and agree that losses incurred by either you or your TPA users in connection with or as a result of your failure to properly secure relevant data or credentials will be solely your responsibility, and Telegram will neither be liable nor compensate you, your associates, those acting on your behalf or your TPA users for this loss.</p>
|
||||
<h4><a class="anchor" name="6-4-payment-providers" href="#6-4-payment-providers"><i class="anchor-icon"></i></a>6.4. Payment Providers</h4>
|
||||
<p>The list of <a href="https://core.telegram.org/bots/payments#supported-payment-providers">available payment providers</a> may change at our discretion at any time without notice, either to add or remove providers from further participation in Bot Platform.</p>
|
||||
<p>Third-party payment providers may have additional terms and stipulations regarding their use in connection with your TPA, as agreed between you and them. Should Telegram no longer support a provider, or should the provider itself cease operations, it is your responsibility to settle any resulting disputes, unclaimed funds, potential losses or other adverse consequences as the case may be, in accordance with the provider’s terms.</p>
|
||||
<p>For clarity, it is solely your responsibility to fully understand and comply with the terms, conditions, and policies set forth by any third-party payment provider you choose to use in conjunction with your TPA, and any issues or disputes arising thereunder are to be resolved solely between you and them.</p>
|
||||
<h4><a class="anchor" name="6-5-taxes" href="#6-5-taxes"><i class="anchor-icon"></i></a>6.5. Taxes</h4>
|
||||
<p>You are solely responsible for all taxes and fees associated with any income you receive via any services, products, content, or utilities created by you through or in connection with Bot Platform, if applicable and in accordance with local laws. Telegram will not inform you of, nor calculate or pay out any taxes and fees on your behalf. For clarity, this applies both to payments initiated through the Telegram Payment API for TPA, and any other payment framework or processor you may choose to use.</p>
|
||||
<p>Consequently, you explicitly acknowledge and agree that Telegram will not be liable for any fees, expenses, penalties, or additional costs you may incur as a result of your participation in Bot Platform, including but not limited to those arising from your failure to properly comply with applicable local laws and tax regulations.</p>
|
||||
<h3><a class="anchor" name="7-license-and-attribution" href="#7-license-and-attribution"><i class="anchor-icon"></i></a>7. License and Attribution</h3>
|
||||
<p>You retain ownership over the code of your TPA, the services it offers and the content it uploads (if applicable). Telegram retains ownership over the code and functionality of the Telegram apps, its code, trademarks, servers, architecture, protocols and APIs.</p>
|
||||
<p>Telegram will not be subject to, and you agree to exempt it from, the Terms of your TPA or any other services, products, content, or utilities created by you through or in connection with Bot Platform.</p>
|
||||
<h4><a class="anchor" name="7-1-branding" href="#7-1-branding"><i class="anchor-icon"></i></a>7.1. Branding</h4>
|
||||
<p>Your TPA and any other service or product you choose to offer on Telegram must have their own branding and separate affiliation. Under no circumstances are you allowed to incorporate (either expressly or implicitly) the intellectual property of Telegram, including but not limited to its trademarks, known service names, trade names, logos, or any graphical representations associated with Telegram, into the branding, name, description, advertising, or identity of your TPA.</p>
|
||||
<p>Should we determine in our sole discretion that your services might be misunderstood as being affiliated with or operated by Telegram, you understand and agree that we have the right (but not the obligation) to request that you immediately alter your branding to mitigate this, and to take any other action we deem necessary, including but not limited to terminating your TPA, your Telegram account, and your access to Bot Platform.</p>
|
||||
<h4><a class="anchor" name="7-2-marketing" href="#7-2-marketing"><i class="anchor-icon"></i></a>7.2. Marketing</h4>
|
||||
<p>By accessing and utilizing Bot Platform, you consent to grant us a non-exclusive, perpetual, transferable, sub-licensable, royalty-free, and worldwide license to utilize (not reproduce) your TPA for the betterment of the Telegram ecosystem. This encompasses the running, public displaying, advertising, distribution, hosting, enhancement, translation, and utilization of your TPA in manners that facilitate the functionality, publicity, popularity, advancement, and improvement of our platform, APIs, services and products. For clarity and without limiting the foregoing, this provision allows us to, among other things, market and advertise your TPA to users or to other third parties by displaying its name and functionality, make your TPA available through the global Telegram search or other app interfaces and facilitate user engagement with the services you offer.</p>
|
||||
<p>Should either Bot Platform or your TPA be discontinued, this license will remain in effect.</p>
|
||||
<h4><a class="anchor" name="7-3-open-source-licenses" href="#7-3-open-source-licenses"><i class="anchor-icon"></i></a>7.3. Open Source Licenses</h4>
|
||||
<p>To facilitate the integration of your TPA with Bot Platform, Telegram may at times in its sole discretion make available software repositories or tools released under different licenses, some of which may be open source. In the event of any inconsistency or conflict between such licenses and these Terms, the provisions of the relevant open source license shall supersede these Terms to the extent strictly necessary for conflict resolution and solely within the scope of the software they pertain to.</p>
|
||||
<h3><a class="anchor" name="8-compliance-with-laws" href="#8-compliance-with-laws"><i class="anchor-icon"></i></a>8. Compliance with Laws</h3>
|
||||
<p>It is your responsibility to ensure that any TPA, services, products, content, or utilities created by you through or in connection with Bot Platform operate within all applicable laws and regulations, and Telegram explicitly mandates that you do so, but will not be liable if you fail to. Consequently, you understand and agree that the services you offer, including their names, logos, descriptions, branding, uploaded media, communications, functionalities and any other relevant content cannot infringe or violate third party rights, nor can they enable any user to do so.</p>
|
||||
<p>For clarity, you expressly agree to hold Telegram harmless and indemnify it against any claims, damages, costs, fees and legal actions resulting from or arising in connection with your misuse of our services. This includes but is not limited to instances where you, your associates, those acting on your behalf or the services you offer violate these Terms, the <a href="https://telegram.org/tos">Telegram Terms of Service</a>, applicable laws or any other relevant regulation.</p>
|
||||
<h4><a class="anchor" name="8-1-data-protection-laws" href="#8-1-data-protection-laws"><i class="anchor-icon"></i></a>8.1. Data Protection Laws</h4>
|
||||
<p>In addition to and without limiting 4., you will comply with all applicable privacy laws and regulations, such as the European Union’s General Data Protection Regulation (GDPR). It is your responsibility to determine whether or not such laws apply to your TPA, and if applicable, how to meet their requirements, and Telegram will not be liable if you fail to do so.</p>
|
||||
<h3><a class="anchor" name="9-termination" href="#9-termination"><i class="anchor-icon"></i></a>9. Termination</h3>
|
||||
<p>Failure to comply with these Terms or the <a href="https://telegram.org/tos">Telegram Terms of Service</a> may result in a temporary or a permanent ban from Bot Platform or Telegram apps. In such instances, your TPA will be removed from Bot Platform and become partially or fully inaccessible to some or all users. Should we have reason to do so, at our sole discretion, the Telegram account tied to your TPA may also be banned from the Telegram platform. You will not be compensated for any direct or indirect losses resulting from your termination. </p>
|
||||
<h4><a class="anchor" name="9-1-unilateral-termination" href="#9-1-unilateral-termination"><i class="anchor-icon"></i></a>9.1. Unilateral Termination</h4>
|
||||
<p>Telegram can decide to fully or partially discontinue TPA or Bot Platform at any time, including in response to unforeseen circumstances beyond our control. This includes but is not limited to discontinuation in specific regions, for certain users, or removing a subset of services and features. For clarity, we make no guarantee of ongoing or continued support for this program.</p>
|
||||
<h4><a class="anchor" name="9-2-survivability" href="#9-2-survivability"><i class="anchor-icon"></i></a>9.2. Survivability</h4>
|
||||
<p>If any part of these Bot Developer Terms is found to be void, invalid, or unenforceable, that provision will be enforced to the maximum extent allowed under applicable law, and will not impact the rest of the terms herein.</p>
|
||||
<p>The following paragraphs will continue to apply and survive the termination of Bot Platform and, by extension, of these Bot Developer Terms: 2.1., 4.2., 4.4., 5, 5.1., 5.2., 6.2., 6.3., 6.5., 7., 7.2., 8., 8.1., 11. and 11.2..</p>
|
||||
<h3><a class="anchor" name="10-conflicts-of-rules" href="#10-conflicts-of-rules"><i class="anchor-icon"></i></a>10. Conflicts of Rules</h3>
|
||||
<p>Should any controversy arise between these Bot Developer Terms, and any other terms or provisions governing the services you offer through or in connection with Bot Platform as the case may be, it shall be resolved in the manner that is most favorable to Telegram, to the full extent permitted under applicable law.</p>
|
||||
<h4><a class="anchor" name="10-1-agreements-between-you-and-users-of-your-services" href="#10-1-agreements-between-you-and-users-of-your-services"><i class="anchor-icon"></i></a>10.1. Agreements between You and Users of your Services</h4>
|
||||
<p>At your discretion, you may choose to mandate that users of the services you provide in connection with Bot Platform accept an additional agreement that further regulates their use of your TPA. In such cases, you expressly acknowledge and agree that any such agreement exists solely between you and the user, and we bear no responsibility or liability thereunder. Furthermore, such additional agreements cannot override, alter, supersede or otherwise conflict with the Terms outlined herein; in the event of any discrepancy or conflict, without foregoing 10., these Terms shall prevail.</p>
|
||||
<h3><a class="anchor" name="11-liability" href="#11-liability"><i class="anchor-icon"></i></a>11. Liability</h3>
|
||||
<p>You acknowledge and agree that Telegram and its subsidiaries, affiliates, officers, agents, contractors and employees shall bear no liability for any unrealized payments, lost profits, lost or misplaced funds and assets (including cryptocurrency), lost or misplaced data, fines, fees, punitive or reputational damages or any other unwanted consequence that may arise from or in connection with your use of and engagement with Bot Platform.</p>
|
||||
<h4><a class="anchor" name="11-1-misuse-of-service" href="#11-1-misuse-of-service"><i class="anchor-icon"></i></a>11.1. Misuse of Service</h4>
|
||||
<p>Without limiting Sections <a href="#5-1-content">5.1.</a> and <a href="#11-liability">11.</a>, you understand and agree that Telegram will not be liable for the manner in which its users interact and engage with the services you offer through or in connection with Bot Platform, and, by extension, through the Telegram platform. This includes, but is not limited to, users' actions, conduct, content uploaded or removed, instances of spam, unintentional or unsolicited use of your services, or any other actions you deem undesirable or harmful. Furthermore, you expressly and permanently absolve Telegram from any obligation, either express or implied, to monitor, control, or rectify such user interactions to the maximum extent under applicable law.</p>
|
||||
<h4><a class="anchor" name="11-2-indemnity" href="#11-2-indemnity"><i class="anchor-icon"></i></a>11.2. Indemnity</h4>
|
||||
<p>You accept and agree to grant Telegram and its subsidiaries, affiliates, officers, agents, contractors and employees absolute indemnity and to hold them harmless from and against any and all claims, actions, proceedings, obligations, investigations, demands, suits, expenses, costs and damages (including but not limited to legal fees, fines or penalties imposed by any authorities, private entities or regulatory institutions) arising from, related to, or in any way incurred as a result of your use of, conduct in connection with, your engagement with, receipt of and access to Bot Platform. For clarity, this indemnity clause complements the rights, privileges and protections already provided to us under the <a href="https://telegram.org/tos">Telegram Terms of Service</a> (if applicable).</p>
|
||||
<h4><a class="anchor" name="11-3-services-provided-as-is" href="#11-3-services-provided-as-is"><i class="anchor-icon"></i></a>11.3. Services Provided “As Is”</h4>
|
||||
<p>Bot Platform is provided "as is” and “as available”, and, to the extent permitted by applicable law, we make no guarantees that Bot Platform always will be error-free, or that it will function without delays and disruptions at all times. We disclaim all warranties, whether express or implied, including but not limited to the implied warranties of merchantability, fitness for a particular purpose, title, and non-infringement.</p>
|
||||
<p>Accordingly, you acknowledge and agree that Telegram and its subsidiaries, affiliates, officers, agents, contractors and employees explicitly waive all guarantees or warranties concerning Bot Platform, the data accessed through it, the interfaces and clients it integrates with, the relevant documentation, or any other relevant services and functionalities offered. </p>
|
||||
<p>For clarity, this means Telegram makes no commitment, either express or implied, about Bot Platform’s present or future functionality, profitability, dependability, uptime, precision, quality, appropriateness, legality, efficiency, origin, safety, accessibility, availability, practicality, value or their ability to meet any particular needs or standards.</p>
|
||||
<h3><a class="anchor" name="12-modification-of-the-services" href="#12-modification-of-the-services"><i class="anchor-icon"></i></a>12. Modification of the Services</h3>
|
||||
<p>We may, at our sole and absolute discretion and without liability, at any time and without notice, modify Bot Platform in any way we deem necessary. We hold no liability for how these changes may affect access to and services provided through Bot Platform. You are solely responsible for ensuring that your TPA is available to your users and compatible with Bot Platform. In no event shall we be liable for any direct or indirect damages to you or your affiliates, employees, partners and joint venturers arising out of or in connection with any changes made to Bot Platform, including its discontinuation, even if you or others have advised us of the possibility of such damages.</p>
|
||||
<p>These changes include but are not limited to:</p>
|
||||
<ul>
|
||||
<li>(a) Altering, suspending, or fully discontinuing features and services within Bot Platform, including but not limited to Bot Platform itself;</li>
|
||||
<li>(b) Introducing new improvements, bots, mini apps, limitations, rules or changes to our services that might deprecate (or render obsolete or unaccessible) any TPA, services, products, or utilities created by you through or in connection with Bot Platform, including but not limited to those for which you may have already collected payment from users;</li>
|
||||
<li>(c) Imposing limits on or restricting access to Bot Platform;</li>
|
||||
<li>(d) Restricting you from accessing Bot Platform or the Telegram platform;</li>
|
||||
<li>(e) Restricting certain users from accessing one or several TPA operated by you;</li>
|
||||
<li>(f) Adjusting, modifying or radically reshaping the way in which users find, access, interact with or otherwise make use of the TPA you offer through or in connection with Bot Platform.</li>
|
||||
</ul>
|
||||
<h3><a class="anchor" name="13-changes-to-bot-developer-terms-terms" href="#13-changes-to-bot-developer-terms-terms"><i class="anchor-icon"></i></a>13. Changes to Bot Developer Terms Terms</h3>
|
||||
<p>We will review and may update these Bot Developer Terms from time to time. Any changes to these Bot Developer Terms will become effective when we post the revised Bot Developer Terms of Service on this page <a href="https://telegram.org/tos/bot-developers"><strong><a href="https://telegram.org/tos/bot-developers">https://telegram.org/tos/bot-developers</a></strong></a>. Please check our website frequently to see any updates or changes to our Terms, an optional summary of which we may set out below.</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer_wrap">
|
||||
<div class="footer_columns_wrap footer_desktop">
|
||||
<div class="footer_column footer_column_telegram">
|
||||
<h5>Telegram</h5>
|
||||
<div class="footer_telegram_description"></div>
|
||||
Telegram is a cloud-based mobile and desktop messaging app with a focus on security and speed.
|
||||
</div>
|
||||
|
||||
<div class="footer_column">
|
||||
<h5><a href="/faq">About</a></h5>
|
||||
<ul>
|
||||
<li><a href="/faq">FAQ</a></li>
|
||||
<li><a href="/privacy">Privacy</a></li>
|
||||
<li><a href="/press">Press</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/apps#mobile-apps">Mobile Apps</a></h5>
|
||||
<ul>
|
||||
<li><a href="/dl/ios">iPhone/iPad</a></li>
|
||||
<li><a href="/android">Android</a></li>
|
||||
<li><a href="/dl/web">Mobile Web</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/apps#desktop-apps">Desktop Apps</a></h5>
|
||||
<ul>
|
||||
<li><a href="//desktop.telegram.org/">PC/Mac/Linux</a></li>
|
||||
<li><a href="//macos.telegram.org/">macOS</a></li>
|
||||
<li><a href="/dl/web">Web-browser</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer_column footer_column_platform">
|
||||
<h5><a href="//core.telegram.org/">Platform</a></h5>
|
||||
<ul>
|
||||
<li><a href="//core.telegram.org/api">API</a></li>
|
||||
<li><a href="//translations.telegram.org/">Translations</a></li>
|
||||
<li><a href="//instantview.telegram.org/">Instant View</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer_columns_wrap footer_mobile">
|
||||
<div class="footer_column">
|
||||
<h5><a href="/faq">About</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/blog">Blog</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/apps">Apps</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="//core.telegram.org/">Platform</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/press">Press</a></h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="/js/main.js?47"></script>
|
||||
|
||||
<script>backToTopInit("Go up");
|
||||
removePreloadInit();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
202
data/web/telegram.org/tos/bots.html
Normal file
202
data/web/telegram.org/tos/bots.html
Normal file
|
@ -0,0 +1,202 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Terms of Service for Bots</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta property="og:title" content="Terms of Service for Bots">
|
||||
<meta property="og:image" content="">
|
||||
<meta property="og:site_name" content="Telegram">
|
||||
<meta property="og:description" content="Telegram Bots (“Bots”) are applications that run entirely within Telegram apps and integrate seamlessly with their interfaces.…">
|
||||
|
||||
|
||||
<meta property="fb:app_id" content="254098051407226">
|
||||
<meta property="vk:app_id" content="3782569">
|
||||
<meta name="apple-itunes-app" content="app-id=686449807">
|
||||
<meta name="telegram:channel" content="@telegram">
|
||||
|
||||
<link rel="icon" type="image/svg+xml" href="/img/website_icon.svg?4">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon-16x16.png">
|
||||
<link rel="alternate icon" href="/img/favicon.ico" type="image/x-icon" />
|
||||
<link href="/css/bootstrap.min.css?3" rel="stylesheet">
|
||||
|
||||
<link href="/css/telegram.css?236" rel="stylesheet" media="screen">
|
||||
</head>
|
||||
<body class="preload">
|
||||
<div id="fb-root"></div>
|
||||
<div class="tl_page_wrap">
|
||||
<div class="tl_page_head navbar navbar-static-top navbar navbar-tg">
|
||||
<div class="navbar-inner">
|
||||
<div class="container clearfix">
|
||||
<ul class="nav navbar-nav navbar-right"><li class="dropdown top_lang_select"><a class="dropdown-toggle" onclick="return dropdownClick(this, event)" href="#"><i class="dev_top_lang_icon"></i>EN <b class="minicaret"></b></a>
|
||||
<ul class="dropdown-menu"><li class="chosen "><a href="?setln=en">English</a></li><li class="long "><a href="?setln=id">Bahasa Indonesia</a></li><li class="long "><a href="?setln=ms">Bahasa Melayu</a></li><li class=""><a href="?setln=de">Deutsch</a></li><li class=""><a href="?setln=es">Español</a></li><li class=""><a href="?setln=fr">Français</a></li><li class=""><a href="?setln=it">Italiano</a></li><li class=""><a href="?setln=nl">Nederlands</a></li><li class=""><a href="?setln=uz">O‘zbek</a></li><li class=""><a href="?setln=pl">Polski</a></li><li class="long "><a href="?setln=pt-br">Português (Brasil)</a></li><li class=""><a href="?setln=tr">Türkçe</a></li><li class=""><a href="?setln=be">Беларуская</a></li><li class=""><a href="?setln=ru">Русский</a></li><li class=""><a href="?setln=uk">Українська</a></li><li class=""><a href="?setln=ar">العربية</a></li><li class=""><a href="?setln=fa">فارسی</a></li><li class=""><a href="?setln=ko">한국어</a></li></ul></li><li class="navbar-twitter hidden-xs"><a href="https://twitter.com/telegram" target="_blank" data-track="Follow/Twitter" onclick="trackDlClick(this, event)"><i class="icon icon-twitter"></i> Twitter</a></li></ul>
|
||||
<ul class="nav navbar-nav">
|
||||
<li class=""><a href="/">Home</a></li>
|
||||
<li class=""><a href="/faq">FAQ</a></li>
|
||||
<li class=""><a href="/apps">Apps</a></li>
|
||||
<li class="hidden-xs "><a href="//core.telegram.org/api">API</a></li>
|
||||
<li class="hidden-xs "><a href="//core.telegram.org/mtproto">Protocol</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container clearfix tl_page_container ">
|
||||
<div class="tl_page">
|
||||
<div id="dev_page_content_wrap" class=" ">
|
||||
<div class="dev_page_bread_crumbs"></div>
|
||||
<h1 id="dev_page_title">Terms of Service for Bots</h1>
|
||||
|
||||
<div id="dev_page_content"><p>Telegram Bots <strong>(“Bots”)</strong> are applications that run entirely within Telegram apps and integrate seamlessly with their interfaces. Unless otherwise specified, all bots are owned and operated by third-party Service Providers <strong>(“SP”)</strong>, and users can engage with them to access services or purchase goods directly from such Service Providers using Telegram apps.</p>
|
||||
<p>These Terms govern your usage of the Telegram Bot Feature <strong>(“TBF”)</strong> provided by Telegram Messenger Inc. <strong>(“Telegram”)</strong> and constitute a legally binding agreement between you and Telegram. For the purposes of these terms, <strong>‘we’</strong>, <strong>‘us’</strong> and <strong>‘our’</strong> refers to Telegram, and <strong>‘you’</strong> refers to you, the user of the TBF. For clarity, these terms govern your usage of TBF as a user engaging with them through Telegram apps – if you are a SP looking to publish bots on Telegram, you are further subject to our <a href="https://telegram.org/tos/bot-developers">Terms of Service for Bot Developers</a>.</p>
|
||||
<p>When you interact with a Telegram Bot <strong>(“Bot”)</strong>, you may be further subject to its SP terms as agreed between you and the SP. Such terms are to be considered in addition to this document.</p>
|
||||
<h3><a class="anchor" name="1-acceptance-of-bot-terms" href="#1-acceptance-of-bot-terms"><i class="anchor-icon"></i></a>1. Acceptance of Bot Terms</h3>
|
||||
<p>By using the TBF, you agree that you have read in full, understood and accepted to be legally bound by the terms contained herein, in addition to <a href="/tos">Telegram’s Terms of Service</a>, <a href="/privacy">Telegram’s Privacy Policy</a> and the respective Terms of Service of each Bot you access, if any. All of the aforementioned terms may be amended from time to time without notice. Should you decide to purchase goods through a Bot, you may further be subject to the Terms of Service of the provider that will process your payment, as agreed between you and the payment provider. Lastly, should you decide to access a <a href="https://core.telegram.org/bots/webapps">Mini App</a> on Telegram, you will be further subject to our <a href="https://telegram.org/tos/mini-apps">Terms of Service for Mini Apps</a>.</p>
|
||||
<p>For clarity, your continued access to and use of TBF shall constitute your acceptance of these Terms and all other terms that are incorporated herein, including any updates or modifications to them from time to time.</p>
|
||||
<h3><a class="anchor" name="2-bots" href="#2-bots"><i class="anchor-icon"></i></a>2. Bots</h3>
|
||||
<p>All products and services offered via TBF are offered and managed by third-party SP. These SP are also responsible for any continued operation and maintenance for their bots on the Telegram platform. We are not affiliated with any of these SP, and they operate independently of Telegram. By using TBF on the Telegram platform, you acknowledge and agree that:</p>
|
||||
<ul>
|
||||
<li>You are accessing a third-party service directly from its SP;</li>
|
||||
<li>Telegram only provides SP with access to third-party payment providers via its <a href="https://telegram.org/privacy#7-third-party-payment-services">Payment Platform</a>, and does not itself process payments or hold funds;</li>
|
||||
<li>SP may have additional terms as a part of their products or services with which you must comply;</li>
|
||||
<li>You fully acknowledge and explicitly assume any and all risks related to transactions with SP, and agree that we shall not be liable for any risks or adverse consequences arising from such transactions.</li>
|
||||
</ul>
|
||||
<p>The individual SP that operate Bots are solely responsible for the content, products, goods, or services made available to you directly via their respective Bot – including but not limited to quality, performance and availability. You should contact the respective SP directly with any queries, and any disputes shall be resolved directly with the respective SP. </p>
|
||||
<p>Cancellations or refunds for purchases from SP via TBF are subject to the applicable terms of the specific SP from which the purchase was made. Telegram has no role in processing payments and governing refund or cancellation charges. Any disputes must be resolved by contacting the SP directly, who is responsible for resolving the dispute.</p>
|
||||
<h4><a class="anchor" name="2-1-availability" href="#2-1-availability"><i class="anchor-icon"></i></a>2.1. Availability</h4>
|
||||
<p>The SP may, at their discretion, cease all operations on Telegram and discontinue their Bot at any time. In the event that you can no longer access a Bot or some of their features for any reason, Telegram will not be liable for any expenses, losses or damages you may incur. Plausible reasons include but are not limited to:</p>
|
||||
<ul>
|
||||
<li>(i) A technical error;</li>
|
||||
<li>(ii) The SP no longer maintaining their bot;</li>
|
||||
<li>(iii) TBF no longer supporting some or all features integrated by the bot;</li>
|
||||
<li>(iv) A restriction imposed by Telegram on your account or on certain regions, Bots or SP;</li>
|
||||
<li>(v) The bot being intentionally or inadvertently deleted by the SP;</li>
|
||||
<li>(vi) External factors outside our control;</li>
|
||||
</ul>
|
||||
<p>For clarity, regardless of circumstances, should you lose access to accumulated tokens, funds, prizes, progression, media, files, valuable data, code, chats, management tools or any other service, asset or utility provided by SP through a Bot or Mini App for your benefit, Telegram will not be liable and will not compensate you for this loss.</p>
|
||||
<h3><a class="anchor" name="3-payments" href="#3-payments"><i class="anchor-icon"></i></a>3. Payments</h3>
|
||||
<p>Telegram does not process payments. Instead, payments are processed by third-party payment providers, which are chosen by the SP for their Bot, at the SP’s sole discretion, from the list of <a href="https://core.telegram.org/bots/payments#supported-payment-providers">available payment providers</a>.</p>
|
||||
<h4><a class="anchor" name="3-1-payment-information" href="#3-1-payment-information"><i class="anchor-icon"></i></a>3.1. Payment Information</h4>
|
||||
<p>Telegram does not store your credit card details for purchases made via TBF. Such data is handled solely by third-party payment providers. See our <a href="https://telegram.org/privacy#7-third-party-payment-services">Privacy Policy</a> for more details. </p>
|
||||
<h4><a class="anchor" name="3-2-payment-related-disputes" href="#3-2-payment-related-disputes"><i class="anchor-icon"></i></a>3.2. Payment-Related Disputes</h4>
|
||||
<p>Payments conducted or initiated through a Bot are processed by a third-party payment provider, as agreed between you, the SP and the payment provider, which at times may coincide.</p>
|
||||
<p>Telegram does not handle, manage, oversee, verify or provide any sort of warranty over such transactions. Consequently, any disputes, claims, losses, misunderstandings, technical errors, or issues of any kind (both accidental and allegedly intentional) related to payments or transactions must be directed towards the respective payment provider or SP. Telegram bears no responsibility whatsoever and will not be a party to any payment-related disputes or discussions, nor is it liable for any losses or damages the parties involved may incur.</p>
|
||||
<h3><a class="anchor" name="4-privacy" href="#4-privacy"><i class="anchor-icon"></i></a>4. Privacy</h3>
|
||||
<h4><a class="anchor" name="4-1-data-we-share" href="#4-1-data-we-share"><i class="anchor-icon"></i></a>4.1. Data We Share</h4>
|
||||
<p>The data Bots can access when you interact with them is listed in detail in the <a href="https://telegram.org/privacy">Telegram Privacy Policy</a>, see <a href="https://telegram.org/privacy#6-3-what-data-bots-receive">6.3. What Data Bots Receive</a>.</p>
|
||||
<p>By utilizing the TBF, you expressly agree that you have read and understood our Privacy Policy. Further, you agree not to hold us liable for any mismanagement, misuse, or mishandling of the data SP receive in connection with your use of their Bots, under any circumstances.</p>
|
||||
<h4><a class="anchor" name="4-2-data-you-share" href="#4-2-data-you-share"><i class="anchor-icon"></i></a>4.2. Data You Share</h4>
|
||||
<p>You may also choose to provide certain data to a Bot, including but not limited to your phone number, text, media or locations in order to facilitate the service offered by its SP, or for any other reason as determined solely by you. By providing this data to the Bot, you are in turn providing it to the SP, which is responsible for handling and storing any data provided to it.</p>
|
||||
<p>Any processing or collection of data by the SP via TBF is subject to any applicable terms between you and the SP. Any data that is shared with Telegram itself is governed by the <a href="/privacy">Telegram Privacy Policy</a>. Accordingly, you agree not to hold Telegram liable should the SP mismanage, misuse, or mishandle the data you provide to it, under any circumstances. </p>
|
||||
<h4><a class="anchor" name="4-3-telegram-business" href="#4-3-telegram-business"><i class="anchor-icon"></i></a>4.3. Telegram Business</h4>
|
||||
<p><a href="https://telegram.org/blog/telegram-business">Telegram Business</a> subscribers can connect Bots to their Telegram account, to help them automatically process and respond to messages from user users. Section <a href="https://telegram.org/privacy#6-5-telegram-business-chatbots">6.5. Telegram Business Chatbots</a> of the Telegram Privacy Policy details how these bots operate and what data they can access, should you choose to connect one to your account.</p>
|
||||
<p>Bots that support integration with your account via Telegram Business are not different from other Bots made available to you via TBF – they are owned, operated and maintained by independent third-parties. Telegram takes every precaution to protect your private data, including mandating that developers follow strict <a href="https://telegram.org/tos/bot-developers">Terms of Service</a> which help regulate how they represent their services to you and handle your data. However, some SP may be negligent or malicious, and Telegram cannot guarantee that they will always operate in good faith, or exactly as you would expect, including but not limited to their Telegram Business offerings, if applicable.</p>
|
||||
<p>By connecting a Bot to your account through Telegram Business, you agree to indemnify us and hold us harmless from any claims, fees, and damages that may arise from or in connection with unexpected, harmful, or otherwise undesirable actions taken by the Bot you chose or the SP operating it.</p>
|
||||
<h4><a class="anchor" name="4-4-developer-guidelines" href="#4-4-developer-guidelines"><i class="anchor-icon"></i></a>4.4. Developer Guidelines</h4>
|
||||
<p>Certain limits and guidelines are imposed on Bot developers (SP) to help ensure best practices regarding privacy, security, and the safekeeping of your private data. However, Telegram cannot guarantee that all SP will comply with these guidelines at all times. In the event that a Bot is found to be in violation of our <a href="https://telegram.org/tos/bot-developers">Terms of Service for Bot Developers</a>, Telegram retains the right to terminate the Bot from the Telegram platform.</p>
|
||||
<h3><a class="anchor" name="5-disclaimers" href="#5-disclaimers"><i class="anchor-icon"></i></a>5. Disclaimers</h3>
|
||||
<p>To the maximum extent permitted under applicable law, TBF is offered to you on an “as is” and “as available” basis, and you agree to waive, and we categorically disclaim, any and all other warranties of any kind, whether express or implied, regardless of nature, including, without limitation, warranties of merchantability, fitness for a particular purpose, title or non-infringement warranties that arise from course of performance, course of dealing or usage in trade.</p>
|
||||
<p>Without limiting the foregoing, we do not represent or warrant: (a) that TBF, its contents and all goods or services provided therein are reliable, accurate, up to date, truthful, complete, functional, error-free, free of malware and any other harmful or otherwise unwanted elements; or (b) that the goods and services you have purchased and will receive directly from the SP will remain available, functional, performant, relevant or maintain any value or quality.</p>
|
||||
<p>You further acknowledge and agree that matters, issues, complaints and disputes pertaining to warranty, guarantee, quality and service shall be resolved in accordance with the terms set forth by the SP, and you consent to manage such concerns and disputes directly with the SP, without involving Telegram in any capacity.</p>
|
||||
<p>Since goods and services are provided by the respective SP, you recognize and agree that we shall have no obligation, liability or responsibility to you concerning the goods and services, their quality, functionality, performance, value or general availability.</p>
|
||||
<p>You further understand and agree that we will not be liable for any damages or losses due to or relating to:</p>
|
||||
<ul>
|
||||
<li>Any inaccuracy, defect, error or omission of price data, including but not limited to cryptocurrency price data;</li>
|
||||
<li>Any error or delay in the transmission of price data, including but not limited to the transmission of your orders to both SP and payment providers;</li>
|
||||
<li>Interruption in any such data;</li>
|
||||
<li>Any routine, unannounced or unscheduled maintenance as we see fit, either carried out by us directly, by our partners or by SP. This includes but is not limited to temporary or permanent interruptions in the provision of TBF or goods and services deriving from or sustained as a result of such maintenance;</li>
|
||||
<li>Any harm or damage incurred as a result of illegal actions by third parties that were not sanctioned by us;</li>
|
||||
<li>Any harm or damage resulting either directly or indirectly from user actions, negligence, omissions or violations of any applicable laws and governing terms;</li>
|
||||
<li>Any other exceptions as described herein or in any other terms that govern your use of TBF. </li>
|
||||
</ul>
|
||||
<p>You acknowledge and agree that these Terms govern the relationship between you and us. Any and all agreements, dealings, transactions, or any other form of engagement you may have with Service Providers are solely between you and the respective SP; this includes SP found through, accessed through, or promoted through the TBF. We have no liability, obligation, or responsibility to you in relation to any SP, including but not limited to their respective content, goods, services, terms either express or implied, or any other deliverables you obtained or intended to obtain from such SP, regardless of your optional engagement with the SP through their Bot using Telegram’s TBF.</p>
|
||||
<p>By accepting these terms, you acknowledge and fully understand that Bots are operated by third parties. In light of this understanding, you agree that any and all legal actions, claims, or disputes arising out of or in relation to your usage of Bots shall be exclusively directed towards the SP that operated the relevant Bots. Further, to the maximum extent permitted under applicable law, no such legal recourse shall be initiated against Telegram.</p>
|
||||
<h4><a class="anchor" name="5-3-indemnity" href="#5-3-indemnity"><i class="anchor-icon"></i></a>5.3. Indemnity</h4>
|
||||
<p>You accept and agree to grant Telegram and its subsidiaries, affiliates, officers, agents, contractors and employees absolute indemnity and to hold them harmless from and against any and all claims, actions, proceedings, obligations, investigations, demands, suits, expenses, costs and damages (including but not limited to legal fees, fines or penalties imposed by any authorities or regulatory institutions) arising from, related to, or in any way incurred as a result of your use of, conduct in connection with, your purchase, receipt of and access to services and goods from the SP via the TBF. For clarity, this indemnity clause complements the rights, privileges and protections already provided to us under any other terms (if applicable).</p>
|
||||
<h4><a class="anchor" name="5-4-conflicts-of-rules" href="#5-4-conflicts-of-rules"><i class="anchor-icon"></i></a>5.4. Conflicts of Rules</h4>
|
||||
<p>Should any controversy arise between these terms, the SP terms and any other provisions governing your use of TBF, it shall be resolved in the manner that is most favorable to Telegram, to the full extent permitted under applicable law.</p>
|
||||
<h3><a class="anchor" name="6-modification-of-tbf" href="#6-modification-of-tbf"><i class="anchor-icon"></i></a>6. Modification of TBF</h3>
|
||||
<p>We may, at our sole and absolute discretion and without liability, at any time and without notice, modify TBF in any way we deem necessary. We hold no liability for how these changes may affect access to and services provided by Bots. SP are solely responsible for ensuring that their services are available to their users and compatible with TBF. These changes include but are not limited to:</p>
|
||||
<ul>
|
||||
<li>Altering, suspending, or fully discontinuing features within TBF, including but not limited to the TBF itself;</li>
|
||||
<li>Imposing limits on or restricting access to certain SP;</li>
|
||||
<li>Restricting certain users from accessing TBF or the Telegram platform;</li>
|
||||
<li>Adjusting, modifying or radically reshaping the way in which users find, access, interact with or otherwise make use of TBF, to meet evolving technological, economical or regulatory standards.</li>
|
||||
</ul>
|
||||
<h3><a class="anchor" name="7-changes-to-bot-terms" href="#7-changes-to-bot-terms"><i class="anchor-icon"></i></a>7. Changes to Bot Terms</h3>
|
||||
<p>We will review and may update these Terms from time to time. Any changes to these Terms will become effective when we post the revised TBF Terms of Service on this page <a href="https://telegram.org/tos/bots"><strong><a href="https://telegram.org/tos/bots">https://telegram.org/tos/bots</a></strong></a>. Please check our website frequently to see any updates or changes to our Terms, an optional summary of which we may set out below.</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer_wrap">
|
||||
<div class="footer_columns_wrap footer_desktop">
|
||||
<div class="footer_column footer_column_telegram">
|
||||
<h5>Telegram</h5>
|
||||
<div class="footer_telegram_description"></div>
|
||||
Telegram is a cloud-based mobile and desktop messaging app with a focus on security and speed.
|
||||
</div>
|
||||
|
||||
<div class="footer_column">
|
||||
<h5><a href="/faq">About</a></h5>
|
||||
<ul>
|
||||
<li><a href="/faq">FAQ</a></li>
|
||||
<li><a href="/privacy">Privacy</a></li>
|
||||
<li><a href="/press">Press</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/apps#mobile-apps">Mobile Apps</a></h5>
|
||||
<ul>
|
||||
<li><a href="/dl/ios">iPhone/iPad</a></li>
|
||||
<li><a href="/android">Android</a></li>
|
||||
<li><a href="/dl/web">Mobile Web</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/apps#desktop-apps">Desktop Apps</a></h5>
|
||||
<ul>
|
||||
<li><a href="//desktop.telegram.org/">PC/Mac/Linux</a></li>
|
||||
<li><a href="//macos.telegram.org/">macOS</a></li>
|
||||
<li><a href="/dl/web">Web-browser</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer_column footer_column_platform">
|
||||
<h5><a href="//core.telegram.org/">Platform</a></h5>
|
||||
<ul>
|
||||
<li><a href="//core.telegram.org/api">API</a></li>
|
||||
<li><a href="//translations.telegram.org/">Translations</a></li>
|
||||
<li><a href="//instantview.telegram.org/">Instant View</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer_columns_wrap footer_mobile">
|
||||
<div class="footer_column">
|
||||
<h5><a href="/faq">About</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/blog">Blog</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/apps">Apps</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="//core.telegram.org/">Platform</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/press">Press</a></h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="/js/main.js?47"></script>
|
||||
|
||||
<script>backToTopInit("Go up");
|
||||
removePreloadInit();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
174
data/web/telegram.org/tos/business.html
Normal file
174
data/web/telegram.org/tos/business.html
Normal file
|
@ -0,0 +1,174 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Terms of Service for Telegram Business</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta property="og:title" content="Terms of Service for Telegram Business">
|
||||
<meta property="og:image" content="">
|
||||
<meta property="og:site_name" content="Telegram">
|
||||
<meta property="og:description" content="Telegram is a free application that provides a wide range of services for both individuals and businesses, including cloud storage, chat management features, support for multiple devices and more, at no cost. Some additional services, such as Telegram Business, may be available for purchase in certain countries – offering features built to help companies improve their communication with customers, while supporting the continued development of the Telegram platform.">
|
||||
|
||||
|
||||
<meta property="fb:app_id" content="254098051407226">
|
||||
<meta property="vk:app_id" content="3782569">
|
||||
<meta name="apple-itunes-app" content="app-id=686449807">
|
||||
<meta name="telegram:channel" content="@telegram">
|
||||
|
||||
<link rel="icon" type="image/svg+xml" href="/img/website_icon.svg?4">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon-16x16.png">
|
||||
<link rel="alternate icon" href="/img/favicon.ico" type="image/x-icon" />
|
||||
<link href="/css/bootstrap.min.css?3" rel="stylesheet">
|
||||
|
||||
<link href="/css/telegram.css?236" rel="stylesheet" media="screen">
|
||||
</head>
|
||||
<body class="preload">
|
||||
<div id="fb-root"></div>
|
||||
<div class="tl_page_wrap">
|
||||
<div class="tl_page_head navbar navbar-static-top navbar navbar-tg">
|
||||
<div class="navbar-inner">
|
||||
<div class="container clearfix">
|
||||
<ul class="nav navbar-nav navbar-right"><li class="dropdown top_lang_select"><a class="dropdown-toggle" onclick="return dropdownClick(this, event)" href="#"><i class="dev_top_lang_icon"></i>EN <b class="minicaret"></b></a>
|
||||
<ul class="dropdown-menu"><li class="chosen "><a href="?setln=en">English</a></li><li class="long "><a href="?setln=id">Bahasa Indonesia</a></li><li class="long "><a href="?setln=ms">Bahasa Melayu</a></li><li class=""><a href="?setln=de">Deutsch</a></li><li class=""><a href="?setln=es">Español</a></li><li class=""><a href="?setln=fr">Français</a></li><li class=""><a href="?setln=it">Italiano</a></li><li class=""><a href="?setln=nl">Nederlands</a></li><li class=""><a href="?setln=uz">O‘zbek</a></li><li class=""><a href="?setln=pl">Polski</a></li><li class="long "><a href="?setln=pt-br">Português (Brasil)</a></li><li class=""><a href="?setln=tr">Türkçe</a></li><li class=""><a href="?setln=be">Беларуская</a></li><li class=""><a href="?setln=ru">Русский</a></li><li class=""><a href="?setln=uk">Українська</a></li><li class=""><a href="?setln=ar">العربية</a></li><li class=""><a href="?setln=fa">فارسی</a></li><li class=""><a href="?setln=ko">한국어</a></li></ul></li><li class="navbar-twitter hidden-xs"><a href="https://twitter.com/telegram" target="_blank" data-track="Follow/Twitter" onclick="trackDlClick(this, event)"><i class="icon icon-twitter"></i> Twitter</a></li></ul>
|
||||
<ul class="nav navbar-nav">
|
||||
<li class=""><a href="/">Home</a></li>
|
||||
<li class=""><a href="/faq">FAQ</a></li>
|
||||
<li class=""><a href="/apps">Apps</a></li>
|
||||
<li class="hidden-xs "><a href="//core.telegram.org/api">API</a></li>
|
||||
<li class="hidden-xs "><a href="//core.telegram.org/mtproto">Protocol</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container clearfix tl_page_container ">
|
||||
<div class="tl_page">
|
||||
<div id="dev_page_content_wrap" class=" ">
|
||||
<div class="dev_page_bread_crumbs"></div>
|
||||
<h1 id="dev_page_title">Terms of Service for Telegram Business</h1>
|
||||
|
||||
<div id="dev_page_content"><p>Telegram is a free application that provides a wide range of services for both individuals and businesses, including cloud storage, chat management features, support for multiple devices and more, at no cost. Some additional services, such as <a href="https://telegram.org/blog/telegram-business">Telegram Business</a>, may be available for purchase in certain countries – offering features built to help companies improve their communication with customers, while supporting the continued development of the Telegram platform.</p>
|
||||
<h3><a class="anchor" name="1-introduction" href="#1-introduction"><i class="anchor-icon"></i></a>1. Introduction</h3>
|
||||
<p>Telegram Business is a subscription membership that unlocks exclusive features and improved functionality like automated messages, quick replies, profile customization and chatbot integration. By purchasing Telegram Business, you agree that you are authorizing recurring monthly or yearly payments, which will be made to Telegram using the payment method you selected until the subscription is canceled by you or Telegram.</p>
|
||||
<p>Telegram uses third-party payment processors to securely facilitate purchases of Telegram Business.</p>
|
||||
<h4><a class="anchor" name="1-1-payment" href="#1-1-payment"><i class="anchor-icon"></i></a>1.1. Payment</h4>
|
||||
<p>You can manage your Telegram Business subscription by accessing the Telegram Business section in the Settings of your Telegram account. If your payment method is declined, you must provide new payment information or your Telegram Business subscription will be canceled. If you provide new payment information and are successfully charged, your new subscription period will be based on the original renewal date and not the date of the successful charge.</p>
|
||||
<h4><a class="anchor" name="1-2-taxes-and-conversion-rates" href="#1-2-taxes-and-conversion-rates"><i class="anchor-icon"></i></a>1.2. Taxes and Conversion Rates</h4>
|
||||
<p>Users in certain regions may be required to pay local taxes, which will be calculated and added to the total cost of a purchase. Payment providers may apply their own commissions and conversion rates to payments in various currencies. This is outside of Telegram’s control.</p>
|
||||
<h3><a class="anchor" name="2-cancellation-policy" href="#2-cancellation-policy"><i class="anchor-icon"></i></a>2. Cancellation Policy</h3>
|
||||
<h4><a class="anchor" name="2-1-canceling-a-subscription" href="#2-1-canceling-a-subscription"><i class="anchor-icon"></i></a>2.1. Canceling a Subscription</h4>
|
||||
<p>You can cancel Telegram Business any time. To cancel your subscription, follow the instructions in the Telegram Business section in the Settings of your Telegram account. If you purchased Telegram Business using your Apple ID, you can cancel your subscription through your device's Account Settings or in the Manage Subscriptions section of the Apple App Store. If you purchased Telegram Business using Google Play, you can cancel your subscriptions by visiting the Subscriptions section of Google Play.</p>
|
||||
<h4><a class="anchor" name="2-2-refunds-and-effective-cancellation" href="#2-2-refunds-and-effective-cancellation"><i class="anchor-icon"></i></a>2.2. Refunds and Effective Cancellation</h4>
|
||||
<p>Your subscription will remain active from the time you cancel until the end of your current billing period, and you will not receive a refund or credit for any remaining days in your current billing period. At the end of your subscription you will lose access to all features associated with Telegram Business.</p>
|
||||
<p>Deleting your Telegram account or removing the Telegram application from your device does not cancel your subscription.</p>
|
||||
<h3><a class="anchor" name="3-paid-services-obtained-through-third-parties" href="#3-paid-services-obtained-through-third-parties"><i class="anchor-icon"></i></a>3. Paid Services Obtained Through Third Parties</h3>
|
||||
<p>If you obtain a Telegram Business subscription via a third party (e.g. Google Play, Apple App Store), your purchase may be further subject to the third party's terms as agreed between you and the third party. For paid services obtained via a third party, your billing relationship will be directly with the applicable third party.</p>
|
||||
<h4><a class="anchor" name="3-1-refunding-services-obtained-through-third-parties" href="#3-1-refunding-services-obtained-through-third-parties"><i class="anchor-icon"></i></a>3.1. Refunding Services Obtained Through Third Parties</h4>
|
||||
<p>By issuing a chargeback or refund request for Business subscriptions paid for through a third party, you agree to allow Telegram to release necessary data to that third party regarding your account status and Telegram Business subscriptions.</p>
|
||||
<h3><a class="anchor" name="4-termination" href="#4-termination"><i class="anchor-icon"></i></a>4. Termination</h3>
|
||||
<h4><a class="anchor" name="4-1-compliance-with-the-terms" href="#4-1-compliance-with-the-terms"><i class="anchor-icon"></i></a>4.1. Compliance with the Terms</h4>
|
||||
<p>Failure to comply with the Telegram Terms of Service may result in a temporary or a permanent ban from Telegram or some of its services. In such instances, you might lose the benefits of Telegram Business and we will not compensate you for this loss.</p>
|
||||
<h4><a class="anchor" name="4-2-unilateral-termination" href="#4-2-unilateral-termination"><i class="anchor-icon"></i></a>4.2. Unilateral Termination</h4>
|
||||
<p>Telegram can decide to stop offering subscriptions at any time, including in response to unforeseen circumstances beyond our control, or to comply with a legal requirement; in this case we will cancel your subscription and refund the prorated portion of any prepaid subscription fee equal to the remaining unused term of the subscription.</p>
|
||||
<h3><a class="anchor" name="5-taxes-fees-and-refunds" href="#5-taxes-fees-and-refunds"><i class="anchor-icon"></i></a>5. Taxes, Fees and Refunds</h3>
|
||||
<p>You are responsible for all applicable taxes, data plans, internet fees, and other fees associated with your use of Telegram.</p>
|
||||
<p>Generally, all charges for purchases are nonrefundable. It is not possible to get a “partial refund” or credit if a user wishes to cancel their recurring subscription early – it will remain valid until the end of its purchased duration.</p>
|
||||
<h3><a class="anchor" name="6-changes" href="#6-changes"><i class="anchor-icon"></i></a>6. Changes</h3>
|
||||
<h4><a class="anchor" name="6-1-pricing-and-terms" href="#6-1-pricing-and-terms"><i class="anchor-icon"></i></a>6.1. Pricing and Terms</h4>
|
||||
<p>During the initial phase following its launch, Telegram Business shall be provided complimentary to subscribers of Telegram Premium. Subsequently, we reserve the right to institute a separate charge for Telegram Business services.</p>
|
||||
<p>While we do not anticipate frequent changes to the price of Telegram Business, we reserve the right to change both these terms and the fees in effect on renewal of your subscription, to reflect factors such as changes to our business, different product offerings, or new economic conditions.</p>
|
||||
<h4><a class="anchor" name="6-2-advance-notice" href="#6-2-advance-notice"><i class="anchor-icon"></i></a>6.2. Advance Notice</h4>
|
||||
<p>We will give you no less than 30 days' advance notice of any material changes via a message to your Telegram account and you will have the opportunity to cancel your subscription before the new fee comes into effect. Any correspondence from Telegram about a user’s Business account will be sent via verified service accounts in the Telegram app.</p>
|
||||
<p>Messages from Telegram about your Business account will contain relevant information about your subscription or payment status – not special offers or promotions.</p>
|
||||
<h3><a class="anchor" name="7-the-scope-of-business-services" href="#7-the-scope-of-business-services"><i class="anchor-icon"></i></a>7. The Scope of Business Services</h3>
|
||||
<h4><a class="anchor" name="7-1-included-services" href="#7-1-included-services"><i class="anchor-icon"></i></a>7.1. Included Services</h4>
|
||||
<p>The services included in the Telegram Business subscription (“Business Services”) are listed in the Business Section in official Telegram apps. From time to time, we may add new items into the Business Services. We may also remove some of the existing Business Services if we are no longer able to provide them for legal or technical reasons. In addition, some Business Services may become free of charge for all Telegram users in the future or be offered as a separate membership tier.</p>
|
||||
<p>At times, certain Telegram Business features may be included in or bundled with other offerings, such as <a href="https://telegram.org/tos#terms-of-service-for-telegram-premium">Telegram Premium</a>. In such cases, your use of Telegram Business will be further subject to the relevant tTerms of those offerings.</p>
|
||||
<h4><a class="anchor" name="7-2-availability" href="#7-2-availability"><i class="anchor-icon"></i></a>7.2. Availability</h4>
|
||||
<p>Telegram strives to make its services available for all users all the time, but occasional technical issues may occur, temporarily preventing us from delivering services, including Business Services, to our users. Telegram will not compensate you for any direct or indirect loss resulting from our temporary inability to provide any free or paid services.</p>
|
||||
<p>Business Services are available on major Telegram clients, such as the official iOS and Android apps. Some Telegram apps made by Telegram or by third parties may not offer all Business Services immediately after they are launched or at all.</p>
|
||||
<h4><a class="anchor" name="7-3-software-requirements" href="#7-3-software-requirements"><i class="anchor-icon"></i></a>7.3. Software Requirements</h4>
|
||||
<p>Some Business Services may require the latest version of the Telegram application to be installed on your device. In some cases, users you interact with may also need to have the latest version of the Telegram application installed on their devices in order to be able to view the content you share with them by the use of Business Services. For example, the location and business hours you add to your profile may be correctly viewed only by users with an up-to-date version of Telegram.</p>
|
||||
<p>In general, users you interact with will not have to purchase a Telegram Business subscription in order to view the content you share with them by the use of Business Services.</p>
|
||||
<h4><a class="anchor" name="7-4-automated-messages" href="#7-4-automated-messages"><i class="anchor-icon"></i></a>7.4. Automated Messages</h4>
|
||||
<p>Business services include the optional ability to set up automated responses that are sent to users who contact you, within certain parameters that you specify. We will take every effort to ensure this feature works as expected, however, technical errors or factors outside our control (e.g., hardware or network issues) may cause some messages to be delivered incorrectly, or not be delivered at all. </p>
|
||||
<p>In the event that any messages are not delivered exactly as you had intended, either due to an error or to incorrect parameters, Telegram will not be liable and will not compensate any losses, direct or indirect, that you or your business might incur.</p>
|
||||
<h4><a class="anchor" name="7-5-chatbot-integration" href="#7-5-chatbot-integration"><i class="anchor-icon"></i></a>7.5. Chatbot Integration</h4>
|
||||
<p>Telegram Business users can connect a chatbot to their account, to streamline and automate interactions between their business and clients. This enables a designated third-party bot from the Telegram Bot Platform to receive and optionally send messages on behalf of the Business user's account. By using the Chatbot Integration feature, you expressly acknowledge that you have read, understood and agreed to <a href="/privacy#6-5-telegram-business-chatbots">section 6.5.</a> of our <a href="/privacy">Privacy Policy</a> and to <a href="https://telegram.org/tos/bots#4-3-telegram-business">section 4.3.</a> of our <a href="https://telegram.org/tos/bots">Bot Terms of Service</a>.</p>
|
||||
<p>It must be stressed that bots on the Telegram Bot Platform <strong>are not</strong> created or maintained by Telegram – they are owned and operated by independent third parties. Accordingly, the reliability, accuracy and availability of the Chatbot Integration feature depends on the third-party service provider that maintains the specific bot you choose, and your usage of their service may further be subject to the third party's terms as agreed between you and them.</p>
|
||||
<p>Telegram takes every precaution to protect your privacy and your account, including mandating that bot developers agree to strict <a href="https://telegram.org/tos/bot-developers">Terms of Service</a> that detail how they must safeguard any data you give them and transparently describe their services. However, we cannot guarantee that this feature will always be available or work as intended, or that the third-party service will perform in good faith or exactly as you expect. We encourage you to always verify the reliability of the bot you choose, and to perform all necessary tests to ensure it works as intended.</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer_wrap">
|
||||
<div class="footer_columns_wrap footer_desktop">
|
||||
<div class="footer_column footer_column_telegram">
|
||||
<h5>Telegram</h5>
|
||||
<div class="footer_telegram_description"></div>
|
||||
Telegram is a cloud-based mobile and desktop messaging app with a focus on security and speed.
|
||||
</div>
|
||||
|
||||
<div class="footer_column">
|
||||
<h5><a href="/faq">About</a></h5>
|
||||
<ul>
|
||||
<li><a href="/faq">FAQ</a></li>
|
||||
<li><a href="/privacy">Privacy</a></li>
|
||||
<li><a href="/press">Press</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/apps#mobile-apps">Mobile Apps</a></h5>
|
||||
<ul>
|
||||
<li><a href="/dl/ios">iPhone/iPad</a></li>
|
||||
<li><a href="/android">Android</a></li>
|
||||
<li><a href="/dl/web">Mobile Web</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/apps#desktop-apps">Desktop Apps</a></h5>
|
||||
<ul>
|
||||
<li><a href="//desktop.telegram.org/">PC/Mac/Linux</a></li>
|
||||
<li><a href="//macos.telegram.org/">macOS</a></li>
|
||||
<li><a href="/dl/web">Web-browser</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer_column footer_column_platform">
|
||||
<h5><a href="//core.telegram.org/">Platform</a></h5>
|
||||
<ul>
|
||||
<li><a href="//core.telegram.org/api">API</a></li>
|
||||
<li><a href="//translations.telegram.org/">Translations</a></li>
|
||||
<li><a href="//instantview.telegram.org/">Instant View</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer_columns_wrap footer_mobile">
|
||||
<div class="footer_column">
|
||||
<h5><a href="/faq">About</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/blog">Blog</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/apps">Apps</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="//core.telegram.org/">Platform</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/press">Press</a></h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="/js/main.js?47"></script>
|
||||
|
||||
<script>backToTopInit("Go up");
|
||||
removePreloadInit();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
176
data/web/telegram.org/tos/content-creator-rewards.html
Normal file
176
data/web/telegram.org/tos/content-creator-rewards.html
Normal file
|
@ -0,0 +1,176 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Terms of Service for Telegram Advertisement Revenue Sharing</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta property="og:title" content="Terms of Service for Telegram Advertisement Revenue Sharing">
|
||||
<meta property="og:image" content="">
|
||||
<meta property="og:site_name" content="Telegram">
|
||||
<meta property="og:description" content="Telegram provides a free and secure messaging service. In addition to sending private messages, Telegram users can subscribe…">
|
||||
|
||||
|
||||
<meta property="fb:app_id" content="254098051407226">
|
||||
<meta property="vk:app_id" content="3782569">
|
||||
<meta name="apple-itunes-app" content="app-id=686449807">
|
||||
<meta name="telegram:channel" content="@telegram">
|
||||
|
||||
<link rel="icon" type="image/svg+xml" href="/img/website_icon.svg?4">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon-16x16.png">
|
||||
<link rel="alternate icon" href="/img/favicon.ico" type="image/x-icon" />
|
||||
<link href="/css/bootstrap.min.css?3" rel="stylesheet">
|
||||
|
||||
<link href="/css/telegram.css?236" rel="stylesheet" media="screen">
|
||||
</head>
|
||||
<body class="preload">
|
||||
<div id="fb-root"></div>
|
||||
<div class="tl_page_wrap">
|
||||
<div class="tl_page_head navbar navbar-static-top navbar navbar-tg">
|
||||
<div class="navbar-inner">
|
||||
<div class="container clearfix">
|
||||
<ul class="nav navbar-nav navbar-right"><li class="dropdown top_lang_select"><a class="dropdown-toggle" onclick="return dropdownClick(this, event)" href="#"><i class="dev_top_lang_icon"></i>EN <b class="minicaret"></b></a>
|
||||
<ul class="dropdown-menu"><li class="chosen "><a href="?setln=en">English</a></li><li class="long "><a href="?setln=id">Bahasa Indonesia</a></li><li class="long "><a href="?setln=ms">Bahasa Melayu</a></li><li class=""><a href="?setln=de">Deutsch</a></li><li class=""><a href="?setln=es">Español</a></li><li class=""><a href="?setln=fr">Français</a></li><li class=""><a href="?setln=it">Italiano</a></li><li class=""><a href="?setln=nl">Nederlands</a></li><li class=""><a href="?setln=uz">O‘zbek</a></li><li class=""><a href="?setln=pl">Polski</a></li><li class="long "><a href="?setln=pt-br">Português (Brasil)</a></li><li class=""><a href="?setln=tr">Türkçe</a></li><li class=""><a href="?setln=be">Беларуская</a></li><li class=""><a href="?setln=ru">Русский</a></li><li class=""><a href="?setln=uk">Українська</a></li><li class=""><a href="?setln=ar">العربية</a></li><li class=""><a href="?setln=fa">فارسی</a></li><li class=""><a href="?setln=ko">한국어</a></li></ul></li><li class="navbar-twitter hidden-xs"><a href="https://twitter.com/telegram" target="_blank" data-track="Follow/Twitter" onclick="trackDlClick(this, event)"><i class="icon icon-twitter"></i> Twitter</a></li></ul>
|
||||
<ul class="nav navbar-nav">
|
||||
<li class=""><a href="/">Home</a></li>
|
||||
<li class=""><a href="/faq">FAQ</a></li>
|
||||
<li class=""><a href="/apps">Apps</a></li>
|
||||
<li class="hidden-xs "><a href="//core.telegram.org/api">API</a></li>
|
||||
<li class="hidden-xs "><a href="//core.telegram.org/mtproto">Protocol</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container clearfix tl_page_container ">
|
||||
<div class="tl_page">
|
||||
<div id="dev_page_content_wrap" class=" ">
|
||||
<div class="dev_page_bread_crumbs"></div>
|
||||
<h1 id="dev_page_title">Terms of Service for Telegram Advertisement Revenue Sharing</h1>
|
||||
|
||||
<div id="dev_page_content"><p>Telegram provides a free and secure messaging service. In addition to sending private messages, Telegram users can subscribe to public one-to-many channels, in which Telegram may display privacy-conscious sponsored messages from time to time.</p>
|
||||
<p>When sponsored messages appear in an eligible channel, its owner may receive a share of the advertisement revenue earned by Telegram, pursuant to the provisions below.</p>
|
||||
<p>These Terms govern your usage of the Advertisement Revenue Sharing Program <strong>(“RS”)</strong> provided by Telegram Messenger Inc. <strong>(“Telegram”)</strong> and constitute a legally binding agreement between you and Telegram. For the purposes of these terms, <strong>‘we’</strong>, <strong>‘us’</strong> and <strong>‘our’</strong> refers to Telegram, and <strong>‘you’</strong> refers to you, the user participating in RS.</p>
|
||||
<h3><a class="anchor" name="1-acceptance-of-revenue-sharing-terms" href="#1-acceptance-of-revenue-sharing-terms"><i class="anchor-icon"></i></a>1. Acceptance of Revenue Sharing Terms</h3>
|
||||
<p>By benefiting from RS, you agree that you have read in full, understood and accepted to be legally bound by the terms contained herein, in addition to <a href="/tos">Telegram’s Terms of Service</a> and <a href="/privacy">Telegram’s Privacy Policy</a>. All of the aforementioned terms may be amended from time to time at our discretion, and updated versions enter into force as soon as they are published at their respective web-pages. </p>
|
||||
<p>For clarity, your continued access to RS shall constitute your acceptance of these Terms and all other terms that are incorporated herein, including any updates or modifications to them from time to time.</p>
|
||||
<h3><a class="anchor" name="2-scope" href="#2-scope"><i class="anchor-icon"></i></a>2. Scope</h3>
|
||||
<p>Advertisers can use our <a href="https://ads.telegram.org/">Ad Platform</a> to purchase advertisements that will be published on Telegram in the form of sponsored messages. By default, ads are shown in public channels chosen by the advertiser. In return, channel owners may be eligible for a share of the revenue generated by the ads shown in their channel.</p>
|
||||
<p>These terms govern your participation in RS, which is in no way to be viewed or represented as a form of employment or partnership with Telegram, nor as an endorsement by Telegram of you, your associates, agents, employers, channels, opinions, or the content you publish.</p>
|
||||
<h3><a class="anchor" name="3-availability" href="#3-availability"><i class="anchor-icon"></i></a>3. Availability</h3>
|
||||
<p>The Telegram RS Program may not be available to certain channels, channel owners and geographical regions, in accordance with current demand, economic considerations, regulatory restrictions, channel topics and other factors. Similarly, advertisements may not be displayed to users in certain regions, which, at times, could represent a significant portion of your audience.</p>
|
||||
<p>You acknowledge and agree that the availability of the RS Program for both you, your channels and your audience may change at any time, and we are not obligated to provide advance notice, compensation or explanations for any such changes.</p>
|
||||
<h3><a class="anchor" name="4-rewards" href="#4-rewards"><i class="anchor-icon"></i></a>4. Rewards</h3>
|
||||
<h4><a class="anchor" name="4-1-revenue-share" href="#4-1-revenue-share"><i class="anchor-icon"></i></a>4.1 Revenue Share</h4>
|
||||
<p>You may be eligible to receive a 50% share of the revenue Telegram earns in connection with the number of valid impressions of sponsored messages displayed in eligible channels you own, subject to Telegram’s ongoing voluntary commitment to incentivizing content creators who comply with the terms set out in this agreement. The share, if any, is subject to change at any time without notice at our sole discretion.Telegram will determine the amount of your reward and means of withdrawal at its sole discretion.</p>
|
||||
<p> You expressly acknowledge and agree that such rewards do not constitute payments for any services rendered, represent an optional good-faith effort by Telegram to incentivize content creators, and may be waived or discontinued at any time.</p>
|
||||
<p>You acknowledge that Telegram reserves the right to partially or fully withhold your rewards if it determines, at its sole discretion, that you have not been in compliance with these terms at any point, up to and including the date on which you request withdrawal. </p>
|
||||
<p>You further acknowledge and agree that Telegram has the right to offset rewards to you by deducting any amount it deems related to invalid activity, impressions or queries. The deducted amount can equal the full balance as the case may be. Invalid activity includes but is not limited to:</p>
|
||||
<ul>
|
||||
<li>(a) Impressions and activity solicited through false representation, monetary purchase or explicit requests for users to interact with sponsored messages for the purposes of artificially inflating payout.</li>
|
||||
<li>(b) Spam, automation, invalid or fake impressions and any other simulated or otherwise non-genuine activity, regardless of whether operated by you, your associates or other third parties.</li>
|
||||
<li>(c) Any impressions or activity generated in a channel (or by a user) that itself did not comply with these Terms or, by extension, with the Telegram <a href="/tos">Terms of Service</a>.</li>
|
||||
<li>(d) Attempts to modify or interfere with Telegram clients and APIs, including but not limited to tampering with how Telegram serves ads and measures user impressions.</li>
|
||||
<li>(e) Any other activity influenced by intentional or otherwise unwanted misconduct by the channel owner, its audience, other channel administrators or unrelated third parties.</li>
|
||||
</ul>
|
||||
<p>In the event that any such invalid activity is detected after you have withdrawn your balance, Telegram reserves the right to debit your account and offset any future rewards until it is made whole. Depending on the circumstances and at its sole discretion, Telegram may also stop sharing revenue originating from your channel, or terminate it and your account altogether.</p>
|
||||
<h4><a class="anchor" name="4-2-payment-of-rewards" href="#4-2-payment-of-rewards"><i class="anchor-icon"></i></a>4.2. Payment of Rewards</h4>
|
||||
<p>Telegram currently outsources the payout of RS rewards to <a href="https://fragment.com/">Fragment</a>, a non-custodial platform owned and operated by Fragment Corp. You understand and agree that your engagement with Fragment is further subject to the Fragment <a href="https://fragment.com/terms">Terms of Service</a> and <a href="https://fragment.com/privacy">Privacy Policy</a>.</p>
|
||||
<p>Furthermore, you understand that Fragment may be unable to facilitate reward withdrawal for certain users or in certain countries, in accordance with regulatory considerations and other factors. Likewise, your government or internet service provider may prevent you from accessing or engaging with Fragment. All aforementioned factors are outside of our control, therefore, should you be unable to withdraw your rewards through Fragment for any reason, you acknowledge and agree that Telegram will not be liable, nor will it offer any alternative reward.</p>
|
||||
<h4><a class="anchor" name="4-3-value" href="#4-3-value"><i class="anchor-icon"></i></a>4.3. Value</h4>
|
||||
<p>When there are Toncoins or other cryptocurrencies in your channel balance, official Telegram clients may display an estimated value of your balance in a global currency, such as USD or EUR. You understand and agree that the estimated value displayed is for convenience only, is purely an approximation relevant for a particular moment in time and not a guaranteed price or exchange offer. The relative value of cryptocurrencies may fluctuate over time, and we make no guarantee that any cryptocurrency will retain or increase its value over time in relation to other global currencies.</p>
|
||||
<h4><a class="anchor" name="4-4-balance" href="#4-4-balance"><i class="anchor-icon"></i></a>4.4. Balance</h4>
|
||||
<p>You understand and agree that the pending balance shown in your Telegram channel, until requested for withdrawal and successfully transferred, does not constitute funds owned by you and held in deposit or under custody by Telegram on your behalf. These displayed earnings should be considered an indicative amount representing the rewards you may receive pursuant to the provisions set out herein under our revenue sharing model. The Telegram platform is not and does not act as a financial institution or custodian of these funds.</p>
|
||||
<h4><a class="anchor" name="4-5-asset-management" href="#4-5-asset-management"><i class="anchor-icon"></i></a>4.5. Asset Management</h4>
|
||||
<p>Channel owners and their administrators are solely responsible for safeguarding, handling and withdrawing any rewards earned by their channel from RS. By accepting these terms, you acknowledge that as the channel owner, you bear all responsibility therein, including but not limited to maintaining access to your Telegram account, enabling security features such as Two-Step Verification, using only official Telegram apps and ensuring your devices are free of malware.</p>
|
||||
<p>For clarity, should you lose access to your account or channel, thereby becoming unable to withdraw any pending balance, that balance is considered forfeit and Telegram will not compensate you for this loss. Similarly, any reward withdrawals are neither reversible nor refundable, including but not limited to instances where you may erroneously withdraw money into an incorrect wallet. You understand that it is your responsibility to ensure that your withdrawals are set for the intended cryptocurrency wallet.</p>
|
||||
<p>You additionally understand and agree that you alone are responsible for ensuring your continued ability to access your cryptocurrency wallet, and, by extension, any cryptocurrency you own. Neither Telegram nor any other party controls decentralized blockchains, and as such, there exists no mechanism, entity or authority capable of restoring access to your wallets or funds, should you lose access to them for any reason, including but not limited to negligence, malware, technical errors and malicious actors. You must take any necessary steps to safely store the login information, passwords, passphrases and other recovery information related to your wallet, and Telegram will not be liable if you fail to do so, or otherwise lose access to your wallet or funds by any means.</p>
|
||||
<p>For clarity, you understand and agree that Telegram does not possess the technical means to restore your cryptocurrency wallet and will not refund you any cryptocurrency should you lose access to either one by any means or for any reason.</p>
|
||||
<h4><a class="anchor" name="4-6-taxes-and-fees" href="#4-6-taxes-and-fees"><i class="anchor-icon"></i></a>4.6. Taxes and Fees</h4>
|
||||
<p>You are solely responsible for all taxes and fees associated with the income you receive via RS, if applicable and in accordance with local laws. Telegram will not inform you of, nor calculate or pay out any taxes and fees on your behalf. All payouts you withdraw via RS are to be considered inclusive of tax. You explicitly acknowledge and agree that Telegram will not be liable for any fees, expenses, penalties, or additional costs you may incur as a result of your participation in RS, including but not limited to those arising from your failure to properly comply with applicable local laws.</p>
|
||||
<h3><a class="anchor" name="5-unilateral-termination" href="#5-unilateral-termination"><i class="anchor-icon"></i></a>5. Unilateral Termination</h3>
|
||||
<p>Telegram can decide to fully or partially discontinue RS at any time, including in response to unforeseen circumstances beyond our control. This includes but is not limited to discontinuation in specific regions, for certain users or channels, or for a subset of services and features. For clarity, we make no guarantee of ongoing or continued support for this program. In the event that the program is terminated, any accrued revenue that has not been transferred out of a channel will remain accessible for a period determined at our sole discretion, after which it will be considered forfeit.</p>
|
||||
<p>You further acknowledge and agree that Telegram has complete discretion to terminate your reward from or participation in RS without warning, for violations of these Terms or of the <a href="https://telegram.org/tos">Telegram Terms of Service</a> made by your channel, its administrators, or yourself. In such cases, Telegram may temporarily suspend your channel’s participation until the infraction is remedied, or permanently remove your channel from the RS program.</p>
|
||||
<h3><a class="anchor" name="6-liability" href="#6-liability"><i class="anchor-icon"></i></a>6. Liability</h3>
|
||||
<p>You acknowledge and agree that Telegram shall bear no liability for any unrealized payments, lost or misplaced cryptocurrency, or otherwise unforeseen consequences, financial or otherwise, that you may incur as a direct or indirect consequence of your present or past participation in the RS Program.</p>
|
||||
<p>You further acknowledge and agree that Telegram has no liability, control, nor responsibility over the cryptocurrency wallets to which you withdraw your RS earnings. Your relationship with said wallets and their relevant service providers is governed by any applicable Terms of Service between you and the third-party services. Any disputes or concerns that may arise regarding your external cryptocurrency wallets and transfers are to be mediated and resolved solely by yourself and the third party services involved.</p>
|
||||
<h3><a class="anchor" name="6-1-indemnity" href="#6-1-indemnity"><i class="anchor-icon"></i></a>6.1. Indemnity</h3>
|
||||
<p>You accept and agree to grant Telegram and its subsidiaries, affiliates, officers, agents, contractors and employees absolute indemnity and to hold them harmless from and against any and all claims, actions, proceedings, obligations, investigations, demands, suits, expenses, costs and damages (including but not limited to legal fees, fines or penalties imposed by any authorities, private entities or regulatory institutions) arising from, related to, or in any way incurred as a result of your use of, conduct in connection with, your engagement with, receipt of and access to the RS Program. For clarity, this indemnity clause complements the rights, privileges and protections already provided to us under the Telegram Terms of Service (if applicable).</p>
|
||||
<h3><a class="anchor" name="6-2-services-provided-as-is" href="#6-2-services-provided-as-is"><i class="anchor-icon"></i></a>6.2. Services Provided “As Is”</h3>
|
||||
<p>We undertake all possible efforts to provide the best experience of participating in the RS. However, just like many other electronic services, the RS is provided "as is” and “as available”, and we make no guarantees that the RS always will be error-free, or that it will function without delays and disruptions at all times. We disclaim all warranties, whether express or implied, including the implied warranties of merchantability, fitness for a particular purpose, title, and non-infringement.</p>
|
||||
<h3><a class="anchor" name="7-changes" href="#7-changes"><i class="anchor-icon"></i></a>7. Changes</h3>
|
||||
<p>We will review and may update these Terms from time to time. Any changes to these Terms will become effective when we post the revised Advertisement Revenue Sharing Terms of Service on this page <a href="www.telegram.org/tos/content-creator-rewards"><strong>www.telegram.org/tos/content-creator-rewards</strong></a>. Please check our website frequently to see any updates or changes to our Terms, an optional summary of which we may set out below.</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer_wrap">
|
||||
<div class="footer_columns_wrap footer_desktop">
|
||||
<div class="footer_column footer_column_telegram">
|
||||
<h5>Telegram</h5>
|
||||
<div class="footer_telegram_description"></div>
|
||||
Telegram is a cloud-based mobile and desktop messaging app with a focus on security and speed.
|
||||
</div>
|
||||
|
||||
<div class="footer_column">
|
||||
<h5><a href="/faq">About</a></h5>
|
||||
<ul>
|
||||
<li><a href="/faq">FAQ</a></li>
|
||||
<li><a href="/privacy">Privacy</a></li>
|
||||
<li><a href="/press">Press</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/apps#mobile-apps">Mobile Apps</a></h5>
|
||||
<ul>
|
||||
<li><a href="/dl/ios">iPhone/iPad</a></li>
|
||||
<li><a href="/android">Android</a></li>
|
||||
<li><a href="/dl/web">Mobile Web</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/apps#desktop-apps">Desktop Apps</a></h5>
|
||||
<ul>
|
||||
<li><a href="//desktop.telegram.org/">PC/Mac/Linux</a></li>
|
||||
<li><a href="//macos.telegram.org/">macOS</a></li>
|
||||
<li><a href="/dl/web">Web-browser</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer_column footer_column_platform">
|
||||
<h5><a href="//core.telegram.org/">Platform</a></h5>
|
||||
<ul>
|
||||
<li><a href="//core.telegram.org/api">API</a></li>
|
||||
<li><a href="//translations.telegram.org/">Translations</a></li>
|
||||
<li><a href="//instantview.telegram.org/">Instant View</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer_columns_wrap footer_mobile">
|
||||
<div class="footer_column">
|
||||
<h5><a href="/faq">About</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/blog">Blog</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/apps">Apps</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="//core.telegram.org/">Platform</a></h5>
|
||||
</div>
|
||||
<div class="footer_column">
|
||||
<h5><a href="/press">Press</a></h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="/js/main.js?47"></script>
|
||||
|
||||
<script>backToTopInit("Go up");
|
||||
removePreloadInit();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in a new issue