2017-04-04 13 views
0

特定のユーザーのつぶやきを取得するためのJSonリクエストを作成しています。ここに私のリクエストURLがあります。https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=booty&count=50 リクエストの結果が得られましたが、デフォルトでは切り捨てられています この切り詰められたテキストはどのように入手できますか?またはこの切捨てを無効にすることはできますか?ここで返さ切り捨てた結果の一例ですtwitter apiが切り詰められたテキストを返さない

 { 
    geo = "<null>"; 
    id = 848983209580822529; 
    lang = en; 
    place = "<null>"; 
    "possibly_sensitive" = 0; 
    "retweet_count" = 8789; 
    retweeted = 0; 
    source = "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>"; 
    text = "It was an honor to welcome President Al Sisi of Egypt to the @WhiteHouse as we renew the historic partnership betwe\U2026 "; // here can see the text is truncated 
    truncated = 1; 
} 

結果テキスト:It was an honor to welcome President Al Sisi of Egypt to the @WhiteHouse as we renew the historic partnership betwe....

ここで、元のつぶやきのテキストです: It was an honor to welcome President Al Sisi of Egypt to the @WhiteHouse as we renew the historic partnership between the U.S. and Egypt.

答えて

2

研究の時間は、私は必要なすべての私のGoogleのために正しいキーワードだった見つけた後検索すると、要求に応じてtweet_mode=extendedが追加されました.Urlがその仕事をしました。

前のURL:https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=booty&count=50

正しいURL:https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=booty&count=50&tweet_mode=extended

、代わりにtextキーのテキストを使用full_textを取得するため。

詳細はこちら - >https://twittercommunity.com/t/truncated-text-and-media-entities-not-returned/74358

関連する問題