[twitter-dev] [OAuth] GET parameters

2009-05-12 Thread Dmitriy Vyukov
Hi! I do following request: http://twitter.com/statuses/friends_timeline.xml?since_id=1773396714&count=20 When I include GET parameters (since_id, count) into OAuth signature calculation I am getting HTTP 401 error. However when I do NOT include GET parameters into OAuth signature calculation re

[twitter-dev] Re: [OAuth] GET parameters

2009-05-13 Thread Dmitriy Vyukov
On May 12, 10:40 pm, Matt Sanford wrote: > Hi there, > >      The parameters should be required for the OAuth signature. Can   > you please provide the request and response headers for an example? Hi Matt, Forget about that nonsense, the fault was on my side. Now works as expected. When I've t

[twitter-dev] statuses/friends page count?

2009-07-06 Thread Dmitriy Vyukov
Hi! It's unclear how I must determine how many pages retrieve via statuses/ friends. First guess was to fetch until I will retrieve page with 0 friends. However documentation says that there can be arbitrary number of friends per page because of the "filtered out" friends. So I guess I can receiv

[twitter-dev] Re: statuses/friends page count?

2009-07-10 Thread Dmitriy Vyukov
On Jul 6, 9:09 pm, Doug Williams wrote: > You should either page through statuses/friends until you get an empty > response set or use statuses/show to get the number of friends expected and > intelligently page to the end of the list. Ok, thank you, so it's the 'official' method. But I am stil