[twitter-dev] list/statuses

2011-05-29 Thread ogierepier
Now I have a public list that includes private accounts. I'm
retrieving the result by calling statuses.json. The list is followed
by a few people. I have a gadget on my site which retrieves the latest
statuses. The private tweets are left out, which is fine by me, but
they're taking the place of the public tweets. Which means if for
example the 20 latest tweets on the first page of the results contain
19 private tweets you get only one tweet back. I do not want to remove
the private accounts from the list because the people following the
list can see this private tweets on twitter.com. How can I exclude the
private tweets from the query so that my results of the latest 20
tweets contain 20 public statuses?

-- 
Twitter developer documentation and resources: https://dev.twitter.com/doc
API updates via Twitter: https://twitter.com/twitterapi
Issues/Enhancements Tracker: https://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
https://groups.google.com/forum/#!forum/twitter-development-talk


Re: [twitter-dev] list/statuses

2011-05-29 Thread Tom van der Woerdt
You can't. The 20 is the number of tweets received from Twitter's 
database. It will then simply not send the ones which come from private 
users, deleted ones (?), retweets, etc. If you want 20, ask for 50 and 
limit it yourself.


Tom


On 5/29/11 11:20 AM, ogierepier wrote:

Now I have a public list that includes private accounts. I'm
retrieving the result by calling statuses.json. The list is followed
by a few people. I have a gadget on my site which retrieves the latest
statuses. The private tweets are left out, which is fine by me, but
they're taking the place of the public tweets. Which means if for
example the 20 latest tweets on the first page of the results contain
19 private tweets you get only one tweet back. I do not want to remove
the private accounts from the list because the people following the
list can see this private tweets on twitter.com. How can I exclude the
private tweets from the query so that my results of the latest 20
tweets contain 20 public statuses?



--
Twitter developer documentation and resources: https://dev.twitter.com/doc
API updates via Twitter: https://twitter.com/twitterapi
Issues/Enhancements Tracker: https://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
https://groups.google.com/forum/#!forum/twitter-development-talk


[twitter-dev] List Statuses: 401 - Incorrect signature

2010-12-16 Thread Brian Wigginton
Hey there,

I've had a site up and running for quite some time now (July 2010)
since Dec 14, and a little after 2:30 (Mountain) we stopped receiving
tweets from that service call. After checking in on it today I
discovered I was receiving a 401: Incorrect signature error.

Here is my request

/1/mdcpartnerssite/lists/executives/statuses.json?
oauth_consumer_key=KQSwCfwSi2QEW9l6Yu8bgoauth_nonce=caf8db043f02f2612675cfc2b64755c1oauth_signature=hA6%2FA0VtOSyFAxk3Qa4InU
%2FrAdo%3Doauth_signature_method=HMAC-
SHA1oauth_timestamp=1292540218oauth_token=154351009-8yk6Cl0bqA9VzomDPrFsS2JmfnGgox1UHo6eZAOdoauth_version=1.0page=1per_page=200since_id=9996331253

Here is my base string

GEThttp%3A%2F%2Fapi.twitter.com%2F%2F1%2Fmdcpartnerssite%2Flists
%2Fexecutives%2Fstatuses.jsonoauth_consumer_key
%3DKQSwCfwSi2QEW9l6Yu8bg%26oauth_nonce
%3Dcaf8db043f02f2612675cfc2b64755c1%26oauth_signature_method%3DHMAC-
SHA1%26oauth_timestamp%3D1292540218%26oauth_token
%3D154351009-8yk6Cl0bqA9VzomDPrFsS2JmfnGgox1UHo6eZAOd%26oauth_version
%3D1.0%26page%3D1%26per_page%3D200%26since_id%3D9996331253

Please let me know if there is any other information you need that
would help in this manner. Did something change on twitter's end that
required some more strict checking, that I might not be adhering to?
I've also noticed a few other's mailing in about 401 issues.

Any help would be greatly appreciated.

Thank you!

Brian Wigginton
Interactive Developer
Crispin Porter + Bogusky

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] List Statuses Page Limit

2010-09-08 Thread Matthew Terenzio
What is the per page limit of statuses returned on the:

http://dev.twitter.com/doc/get/:user/lists/:id/statuses

method?

Also, if since_id is passed, how many will be returned in a page by default
(if the amount returned is greater than the default)?

Thanks,

Matt

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk?hl=en


[twitter-dev] List statuses paging question

2009-12-09 Thread Orian Marx (@orian)
The documentation for GET list statuses shows an optional pagination
parameter. Is this going to be replaced with a previous / next cursor
in the near future, similar to all other timeline methods?