Advertisement
0utsidethebox

Get all Telegram channel posts v3

Dec 16th, 2020
2,041
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $j = Get-Content -Path "C:\temp\result.json" | ConvertFrom-Json
  2. $j.messages | Where-Object {$_.type -eq 'message'} | ForEach-Object {
  3.     "https://t.me/sterkin_ru/$($_.id)" | Out-File -Append C:\temp\urls.txt
  4. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement