4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

twitterの@Anywhereによるタイムライン取得について

Posted at

@Anywhereでタイムラインを取得する方法をご存知の方がいましたら教えてください。
下記で対象のユーザーのつぶやき一覧は取得できました。
取得したいのは、対象のユーザー視点のタイムラインです。

get_timeline.js

var get_timeline = function(screenName) {
    twttr.anywhere(function(a){a.User.find(screenName, {
        success : function(user){
          user.timeline({
            page : 0,
            count : 100,
            success : function(r){console.log(r)},
            error : function(r){console.log(r)}
          });
        },
        error : function(r){console.log(r)}
      });});
};



4
4
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?