2
0

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 api メモ

Last updated at Posted at 2017-03-15

自分的メモです。

// リスト内検索 hoge さんの kabutech リスト内から うどんを検索


$res = $this->Twitter->search([
  'q' => 'うどん list:hoge/kabutech'
]);

// ここみんが、どのリストに追加されているか取得。
//   lists/memberships


        $res = $this->Twitter->getList([
            'screen_name' => 'coco3n'
        ]);

アイデアとして、

・ツイートのプロフィールのピン留め
・ツイッターリストに、ツイッターログイン時、同時に登録。
そこから最新のつぶやきを取得することでサイトにユーザー毎の最新のつぶやきを持ってこれるようになるのではないか。

2
0
0

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
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?