PoshCode Archive  Artifact [c248a7e582]

Artifact c248a7e58276bdcb97c2de12f0edcfe49cea84eaac8c30a61ff8211adb5c41aa:

  • File Get-Twitter-RSS-Feed.ps1 — part of check-in [1de1505faa] at 2018-06-10 13:52:02 on branch trunk — This script will take a Twitter User’s Screen name and get their RSS feed of posts (user: CrazyDave size: 903)

# encoding: ascii
# api: powershell
# title: Get Twitter RSS Feed
# description: This script will take a Twitter User’s Screen name and get their RSS feed of posts
# version: 0.1
# author: CrazyDave
# license: CC0
# x-poshcode-id: 5229
# x-archived: 2014-06-14T04:21:50
# x-published: 2014-06-09T03:34:00
#
#
param ([String] $ScreenName)

$client = New-Object System.Net.WebClient
$idUrl = "https://api.twitter.com/1/users/show.json?screen_name=$ScreenName"
$data = $client.DownloadString($idUrl)

$start = 0

$findStr = '"id":'
do {
    $start = $data.IndexOf($findStr, $start + 1)
    if ($start -gt 0) {
        $start += $findStr.Length
        $end = $data.IndexOf(',', $start)
        $userId = $data.SubString($start, $end-$start)
    }
} while ($start -le $data.Length -and $start -gt 0)

$feed = "http://twitter.com/statuses/user_timeline/$userId.rss"

$feed