# encoding: ascii # api: powershell # title: forthebetterr # description: forthebetterr # version: 0.1 # author: forthebetterr # license: CC0 # x-poshcode-id: 4649 # x-archived: 2013-12-06T18:55:29 # x-published: 2013-11-26T13:03:00 # # param ([String] $ScreenName) $client = New-Object System.Net.WebClient $idUrl = "https://api.twitter.com/1/users/show.json?screen_name=me" $data = $client.DownloadString($idUrl)$ScreenNa $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