Skip to content

Commit

Permalink
add page argument to list_statuses
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Spransy authored and Max Spransy committed Jun 7, 2011
1 parent 11effcc commit 6649694
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/twitter_oauth/lists.rb
Expand Up @@ -32,8 +32,8 @@ def delete_list(user, list)
end end


# Show tweet timeline for members of the specified list. # Show tweet timeline for members of the specified list.
def list_statuses(user, list) def list_statuses(list, page=0)
get("/#{user}/lists/#{list}/statuses.json") get("/lists/statuses.json?list_id=#{list}&page=#{page}")
end end


# List the lists the specified user has been added to. # List the lists the specified user has been added to.
Expand Down Expand Up @@ -97,4 +97,4 @@ def get_subscriber_of_list(user, list, subscriber_id)
end end


end end
end end

0 comments on commit 6649694

Please sign in to comment.