Skip to content

Commit

Permalink
Retrieve the most recent tweets for search timelines.
Browse files Browse the repository at this point in the history
* twittering-mode.el: Retrieve the most recent tweets for search
timelines instead of including popular tweets.
(twittering-call-api-with-account-in-api1.1): use `recent' as the
`result_type' of search API.
  • Loading branch information
cvmat committed Dec 8, 2013
1 parent 17dcdb4 commit 9641019
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Expand Up @@ -2,6 +2,11 @@

* doc/web/index.text: Fix the URL for the mailing list.

* twittering-mode.el: Retrieve the most recent tweets for search
timelines instead of including popular tweets.
(twittering-call-api-with-account-in-api1.1): use `recent' as the
`result_type' of search API.

2013-12-09 tomykaira <tomykaira@gmail.com>

* twittering-mode.el: Fix arguments of `twittering-http-post'.
Expand Down
2 changes: 1 addition & 1 deletion twittering-mode.el
Expand Up @@ -5858,7 +5858,7 @@ get-service-configuration -- Get the configuration of the server.
("include_entities" . "true")
,@(when max_id `(("max_id" . ,max_id)))
("q" . ,word)
("result_type" . "mixed")
("result_type" . "recent")
,@(when since_id `(("since_id" . ,since_id))))))
(t
(error
Expand Down

0 comments on commit 9641019

Please sign in to comment.