Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使ってますhttps://api.twitter.com/1/statuses/user_timeline.rss?screen_name=[username]&include_rts=true&rpp=100
https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=[username]&include_rts=true&rpp=100
ユーザーのツイートを取得するために、しかし何らかの理由でツイートの説明のほとんどが切り捨てられていますが、完全な説明を取得する方法はありますか
残念ながら、RSS フィードにはツイート全体が含まれていません。
.rss を .xml または .json に置き換えると、全文が表示されます。
https://api.twitter.com/1/statuses/user_timeline.json?screen_name=[username]&include_rts=true&rpp=100
次に、JSON または XML を RSS に変換する必要があります。