私のPinterestフィードはRSSタイトルを20文字に切り捨てており、説明の最後にある「imgsrc」と長いテキストを解析する必要があります。
私の非常に単純なコードは機能しますが、新しいタイトルに「なぜあなたは#Elevator#Pitch-#marketingを持っているのか」と言う方法がわかりません。
$feed = [xml](New-Object System.Net.WebClient).DownloadString('http://pinterest.com/bigoals365/feed.rss')
$feed.rss.channel.Item | select title, link, description | Out-GridView
Invoke-WebRequestも試しましたが、これは基本的な検索では機能しますが、説明の解析に困惑しています。
私のフィードは次のようになります(RSSの1行):
<item><title>Why You’ve Got to Ha</title><link>http://pinterest.com/pin/329888741425045427/</link> <description> <p><a href="http://pinterest.com/pin/329888741425045427/">< img src="http://media-cache-lt0.pinterest.com/192x/bd/5e/7c/bd5e7cd628c21313d835a4e5c89d28ee.jpg"></a></p><p> Why You’ve Got to Have an #Elevator #Pitch - #marketing</p> </description> <pubDate>Wed, 06 Mar 2013 21:59:55 +0000</pubDate><guid>http://pinterest.com/pin/329888741425045427/ </guid></item>
どんな助けでも大歓迎です!