This file contains hidden or 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
| Imports System.IO | |
| Imports System.Net | |
| Imports System.Text | |
| Imports System.Text.Json | |
| Namespace PdfTextExtractor | |
| Public Class Program | |
| ' When you have your own client ID and secret, specify them here: | |
| Private Const CLIENT_ID As String = "FREE_TRIAL_ACCOUNT" | |
| Private Const CLIENT_SECRET As String = "PUBLIC_SECRET" |
This file contains hidden or 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; | |
| using System.Text.Json; | |
| namespace PdfTextExtractor | |
| { | |
| class Program | |
| { | |
| // When you have your own client ID and secret, specify them here: |
This file contains hidden or 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
| Imports System.IO | |
| Imports System.Net | |
| Imports System.Text | |
| Imports System.Text.Json | |
| Public Class Translator | |
| ''' TODO: If you have your own Premium account credentials, put them down here: | |
| Private Const CLIENT_ID As String = "FREE_TRIAL_ACCOUNT" |
This file contains hidden or 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 Translator | |
| { | |
| // TODO: If you have your own Premium account credentials, put them down here: | |
| private static string CLIENT_ID = "FREE_TRIAL_ACCOUNT"; |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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"; |
NewerOlder