Telegram News / Beta / Unofficial Desktop Versions / Web / TG Bots / Subreddit / DMG by RTP [MacOS]
248 subscribers
1.78K photos
2.77K videos
1.14K files
20.1K links
Telegram Channel by @roadtopetabyte http://pixly.me/rtp - Announcements: @rtptme
Download Telegram
"Click here to signup using Telegram?" I think this is possible (like signup with Google or Facebook) but not sure how to do it?
HiSome time back I came across a website where they offered a signup option (create a new account) using Telegram. Its the only time I've seen this offered. For clarity I am not talking about signing up for a telegram account, I am talking about signing up for a 3rd party website account via your telegram account (in the same way you can do this using your Google or Facebook accounts).Does anyone know how this is achieved if indeed it is something that telegram offers.I have a need to register users for a service but do not need or want to know their contact or personal details, all I need is a unique(ish) ID that they (usually) cant change on a whim so I can track account activity.

Submitted October 13, 2021 at 11:40AM by wesleyD777
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q77lm2/click_here_to_signup_using_telegram_i_think_this/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Android client that can disable read receipts
Hi there :)I am in search for a Telegram client for Android, that allows to disable read receipts (at least, so that others don't receive read receipts from me). On the other hand, it should be open source, and as stable and security-tested as possible.Any suggestions and recommendations are highly appreciated!! Thank you :)

Submitted October 13, 2021 at 02:38PM by akylexec
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7a9as/android_client_that_can_disable_read_receipts/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Bots that can multiple send message to various groups
No text found

Submitted October 13, 2021 at 02:53PM by Sensitive_Ad3914
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/q7aich/bots_that_can_multiple_send_message_to_various/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
This media is not supported in your browser
VIEW IN TELEGRAM
Content: You can quickly get in touch with your contacts by tapping the Search icon 🔍 and typing their name. From there it’s just one more tap to give them a call or send them a message. (On iOS, swipe down on the Chat List to show the Search Bar) #TelegramTips https://t.co/E0pHvlaBFN
Url: https://twitter.com/telegram/status/1448272317981728771

Telegram Backup by @tmebackup
A @rtptme project - Other backups: http://pixly.link/tme
This media is not supported in your browser
VIEW IN TELEGRAM
Content: Puoi raggiungere rapidamente i tuoi contatti toccando l'icona Cerca 🔍 e digitando il loro nome. Da lì basta solo un altro tocco per chiamarli o inviare un messaggio. (Su iOS, scorri verso il basso nella lista chat per visualizzare la barra di ricerca) #TelegramTips https://t.co/FArde5oeYf
Url: https://twitter.com/telegram_it/status/1448272552472764425

Telegram Backup by @tmebackup
A @rtptme project - Other backups: http://pixly.link/tme
This media is not supported in your browser
VIEW IN TELEGRAM
Content: Puedes dar rápidamente con tus contactos tocando el ícono de búsqueda 🔍 y escribiendo su nombre. Desde allí basta sólo un toque más para poder hacerles una llamada o enviarles un mensaje (en iOS, desliza la lista de chats hacia abajo para ver la barra de búsqueda). #TelegramTips https://t.co/VNtoqGwjK3
Url: https://twitter.com/telegram_es/status/1448284193335742471

Telegram Backup by @tmebackup
A @rtptme project - Other backups: http://pixly.link/tme
create button which "scrolls" to the post telegram
Hello, Please help me!! I want to know:" how to create button which will scrools to the specific post on telegram channel?

Submitted October 13, 2021 at 07:17PM by Prova1ver
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/q7fx5n/create_button_which_scrolls_to_the_post_telegram/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Here's a PowerShell script to compare two Telegram exports and show any deleted media
I'm a huge data hoarder and hate storing stuff on the cloud so I regularly export my Telegram history, I got to thinking it'd be interesting to see if I could easily find any messages from previous exports that had since been deleted from current chats. I had a look at WinMerge which compares two directories but since Telegram exports media sequentially (Photo 1, Photo 2 etc.) none of the names match up and it's practically impossible to compare them.I'm fairly new to PowerShell so I thought I'd try and write something that compared two exports based on file hashes (which don't rely on the filename or date modified). It's a hilariously inefficient way of comparing two exports, but the result is a new folder with a copy of all the differences as well as a list of each media file saved to a text file.It's NOT recursive so you'd need to run this seperately for the "photos", "video_files" & voice_messages" folders. Just change the variables at the top and happy powershelling.
# Define the source folders, the differences are copied from oldexport into a directory of your choosing $oldexport = "C:\Users\yourusernamehere\Downloads\Telegram Desktop\exportfolder2\photos" $newexport = "C:\Users\yourusernamehere\Downloads\Telegram Desktop\exportfolder2\photos" $pathtosavedifferences = "D:\temp\video_files\" # Define any file exclusions $excluded = @("*thumb.jpg", "*.db") # Get hashes and paths of all files in the source directories and saves them to a CSV Get-FileHash -Algorithm MD5 -Path (Get-ChildItem "$oldexport\*.*" -Exclude $excluded -Recurse -force) | export-csv $env:temp\hashes-oldexport.csv Get-FileHash -Algorithm MD5 -Path (Get-ChildItem "$newexport\*.*" -Exclude $excluded -Recurse -force) | export-csv $env:temp\hashes-newexport.csv # Import the saved CSV files and skip the first row as that's just a weird heading which we don't need $File1 = Import-Csv -Path $env:temp\hashes-oldexport.csv | select -Skip 1 $File2 = Import-Csv -Path $env:temp\hashes-newexport.csv | select -Skip 1 #Compare both CSV files and save the differences to a new CSV file Compare-Object $File1 $File2 -Property Hash | Export-Csv -Path $env:temp\differences.csv -NoTypeInformation -Append # Retrieve the hashes from the differences CSV file $differences = Import-csv -Path $env:temp\differences.csv | select -ExpandProperty Hash # Use the different hashes to fetch the path of each different file, save it to a variable called "Paths" $Paths = Import-CSV $env:temp\hashes-oldexport.csv | select -Skip 1 | Where{$differences -match $_.Hash} | select -ExpandProperty Path # If the destination folder doesn't exist, create it if (!(Test-Path -path $pathtosavedifferences)) {New-Item $pathtosavedifferences -Type Directory} # Save differences to a text file in the destination folder $Paths | Out-File -FilePath "$pathtosavedifferences\Differences.txt" # Copy each different file to the destination folder foreach ($p in $paths) { $file = Split-Path $p -leaf Write-Host "Different file: $file" Copy-Item -Path "$oldexport\$file" -Destination "$pathtosavedifferences\$file" -Force } # Clean up and delete temporary files try { Remove-Item $env:temp\hashes-oldexport.csv Remove-Item $env:temp\hashes-newexport.csv Remove-Item $env:temp\differences.csv } catch { } 


Submitted October 13, 2021 at 11:41PM by lieutenantcigarette
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7lcxi/heres_a_powershell_script_to_compare_two_telegram/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Botfather hasn't worked for weeks.
I've been trying to create a Telegram bot now for like a month. I've submitted tickets as well. Clicking "Send Message" on /botfather does nothing at all.The console has an error that saysFailed to launch 'tg://resolve?domain=botfather' because the scheme does not have a registered handler.Does anyone know what's going on?

Submitted October 14, 2021 at 01:13AM by steezefries
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7n3y5/botfather_hasnt_worked_for_weeks/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
question about deleting Telegram account
hello, sorry for bad englishlet’s say i have a telegram account with a specific phone number, let’s call it “phone number A”, and let’s say i have to switch my phone number to another one, “phone number B”.if i delete my telegram account linked to phone number A with the telegram web procedure, and then i give this phone number A to another person and then this person install telegram, can this person see old chats and groups and messages that I have personally sent BEFORE the account deleting, or does he start with a new fresh account without chats and groups and so all empty without being able to retrieve all the things sent before the deleting?

Submitted October 14, 2021 at 01:17AM by AnonimoPerOvviMotivi
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7n6cs/question_about_deleting_telegram_account/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
question regarding the Google playstore apk vs telegram website apk
So recently i found that telegram offers the app on its website too which is free from Google restrictions and stuff so if I decide to use that app will it be able to access bots which are banned and channels too ?

Submitted October 14, 2021 at 06:06AM by dodushu
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7s0y5/question_regarding_the_google_playstore_apk_vs/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Can’t find someone even if I have their number saved?
Very confused. How is it possible for someone to use telegram without using their phone number ?no username . And when I try to look and check if they are active . It’s not showing . The person ended up messaging me first

Submitted October 14, 2021 at 06:23AM by Evening_Try7659
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7sa6s/cant_find_someone_even_if_i_have_their_number/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Alternative ways to create animated stickers?
Hi,Is there any alternative way to create animated stickers than using Adobe AE? Any other software or app or anything? Or something to convert other animated files (JSON, APNG, GIF, etc) to TGS?

Submitted October 14, 2021 at 09:25AM by vihtla
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7upz2/alternative_ways_to_create_animated_stickers/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
long ago deleted contacts appear
I don't really get how this is happening.I've not had various people in my phone book for years. Yet telegram shows them? I've only just got telegram so how is this happening?This isn't even the same phone or contacts app that I used when I knew these people.Does this simply mean they still had me in their contacts?Shouldn't it be a two way set up?

Submitted October 14, 2021 at 10:20AM by obbzart
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7vdqa/long_ago_deleted_contacts_appear/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Group Owner Deleted the account
Owner of our group has deleted his account and there is no one in the group with full admin rights like owner, I have few queries regarding this, 1. will the group get deleted after a while or it'll remain the same? 2. Is it possible to transfer ownership?

Submitted October 14, 2021 at 10:10AM by Individual_Gene
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7v90v/group_owner_deleted_the_account/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
How to download telegram stickers as svgs?
So sticker downloader bots will give them as compressed jpgs or pngs. How to download them as svgs

Submitted October 14, 2021 at 12:03PM by tfpZeroDay
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7wm1f/how_to_download_telegram_stickers_as_svgs/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
telegram showing my old username
Hi, I haven't used telegram since 2015, I reinstalled it now (I have the same phone number) and used a different name+username, yet, people still see me as the 2015 name. How can I change that?

Submitted October 14, 2021 at 01:47PM by RedDottos
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7y1e0/telegram_showing_my_old_username/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Not able to view history
I am not able to view a group history before joining although others are able to, why is this happening? any solution?

Submitted October 14, 2021 at 03:38PM by Individual_Gene
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7zwvf/not_able_to_view_history/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Where are Telegram's data centers ?
We have a geo ip block in place. Us ,mexico, Canada and some EU countries are allowed.Can't open web or log into client

Submitted October 14, 2021 at 05:04PM by CompleteLoss
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q81kg8/where_are_telegrams_data_centers/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme