amebanow.py
早速 Python のアメーバなうクライアントが出ていたので、参考に(というか置き換えた)C# で作った。
#Postは HTML の DOM がよくわからないのでまだ
http://sourceforge.jp/projects/kaorun/svn/view/trunk/ameba/AmebaNow/?root=kaorun
こんな感じで TL が取れるー
try { AmebaNowClient ameba = new AmebaNowClient(); Console.Write( "AmebaID:" ); string id = Console.ReadLine(); Console.Write( "Password:" ); string password = Console.ReadLine(); ameba.Login( id, password ); List<AmebaNowClient.Entry> entrys = ameba.GetMyTimelines( 0 ); foreach ( AmebaNowClient.Entry entry in entrys ) { Console.WriteLine( string.Format( "{0} {1} {2}", entry.EntryId, entry.AmebaId, entry.EntryText ) ); } } catch ( Exception ex ) { Console.WriteLine( ex.Message ); }