This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Text.Json; | |
using System.IO; | |
using System.Text; | |
class TelegramGroupOpusSender | |
{ | |
// TODO: Replace the following with your gateway instance ID, client ID and secret! | |
private static string INSTANCE_ID = "YOUR_INSTANCE_ID"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Text.Json; | |
using System.IO; | |
using System.Text; | |
class TelegramGroupMp3Sender | |
{ | |
// TODO: Replace the following with your gateway instance ID, client ID and secret! | |
private static string INSTANCE_ID = "YOUR_INSTANCE_ID"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Text.Json; | |
using System.IO; | |
using System.Text; | |
class TelegramGroupPdfSender | |
{ | |
// TODO: Replace the following with your gateway instance ID, client ID and secret! | |
private static string INSTANCE_ID = "YOUR_INSTANCE_ID"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Text.Json; | |
using System.IO; | |
using System.Text; | |
class TelegramGroupImageSender | |
{ | |
// TODO: Replace the following with your gateway instance ID, client ID and secret! | |
private static string INSTANCE_ID = "YOUR_INSTANCE_ID"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Text.Json; | |
using System.IO; | |
using System.Text; | |
class TelegramGroupMessageSender | |
{ | |
// TODO: Replace the following with your gateway instance ID, Premium Account client ID and secret: | |
private static string INSTANCE_ID = "YOUR_INSTANCE_ID_HERE"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Text.Json; | |
using System.IO; | |
using System.Text; | |
class TelegramOpusSender | |
{ | |
// TODO: Replace the following with your gateway instance ID, client ID and secret! | |
private static string INSTANCE_ID = "YOUR_INSTANCE_ID"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Text.Json; | |
using System.IO; | |
using System.Text; | |
class TelegramMp3Sender | |
{ | |
// TODO: Replace the following with your gateway instance ID, client ID and secret! | |
private static string INSTANCE_ID = "YOUR_INSTANCE_ID"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Text.Json; | |
using System.IO; | |
using System.Text; | |
class TelegramPdfSender | |
{ | |
// TODO: Replace the following with your gateway instance ID, client ID and secret! | |
private static string INSTANCE_ID = "YOUR_INSTANCE_ID"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Text.Json; | |
using System.IO; | |
using System.Text; | |
class TelegramImageSender | |
{ | |
// TODO: Replace the following with your gateway instance ID, client ID and secret! | |
private static string INSTANCE_ID = "YOUR_INSTANCE_ID"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Text.Json; | |
using System.IO; | |
using System.Text; | |
class TelegramMessageSender | |
{ | |
// TODO: Replace the following with your gateway instance ID, Premium Account client ID and secret: | |
private static string INSTANCE_ID = "YOUR_INSTANCE_ID_HERE"; |
NewerOlder