[twitter-dev] Friends timeline

2011-07-25 Thread Sweet MAANU
I need to display my followings updates on my website could you please tell a solution I just checked twitter widget unfortunately I didn't found a solution for it please help me php, JQuery, Javascript languages should be better for me -- Have you visited the Developer Discussions feature on h

[twitter-dev] friends timeline from API vs timeline from twitter website.

2011-05-04 Thread RichardB@inview
Hi, Our application is reading from /1/statuses/friends_timeline.xml we set include_entities=false count=12 include_rts=true we do NOT set since_id in this case It generally works fine, however in the case of one of our users (who isn't following many people), we only seem to get his tweets from

Re: [twitter-dev] friends/ids JSON API

2010-10-26 Thread Taylor Singletary
Yes, this will be supported also. We should have the support rolling out very early this week. It will be triggered via a query parameter: stringify_ids=true This will apply to the following: - friends/ids.json - followers/ids.json - blocks/blocking/ids.json - friendships/no_retweets/ids.json -

[twitter-dev] friends/ids JSON API

2010-10-26 Thread Alex B
Will this be updating to the snowflake id strs workaround? Currently it delivers ints in an array. I'd like to propose a flag on all JSON API calls (? ids_as_strings=true) to deliver ids as strings instead of ints. This could apply to the cursor problem we saw earlier. -- Twitter developer docum

Re: [twitter-dev] friends/ids and followers/ids not working in oauth

2010-10-25 Thread Slate Smith
Instead of the console, if you are running some type of linux or unix [unix on osx/mac - terminal], just write a simple function to display results. i just have a function to grab a file or array and just use php to print_r(jsonfilehereorarray); On Oct 25, 2010, at 10:23 AM, Taylor Singleta

Re: [twitter-dev] friends/ids and followers/ids not working in oauth

2010-10-25 Thread Slate Smith
there is a current ticket on ids, also did you notice the newer id_str versus id, use that - and don't use the console it's limiting. $parameters = array("screen_name" => "BARACKOBAMA", "cursor" => $cursor); $method = "followers/ids"; $followers = $this->connection->get($method, $parameters)

Re: [twitter-dev] friends/ids and followers/ids not working in oauth

2010-10-25 Thread Taylor Singletary
The console on dev.twitter.com is unreliable. I recommend using Apigee's great Twitter console instead http://app.apigee.com/console/twitter http://app.apigee.com/console/twitter#apimet=http%3A//api.twitter.com/1/friends/ids.json%3Fuser_id%3D1497__apiidx__%3Dnull__apisecure__%3Dtrue__apiprovider__

[twitter-dev] friends/ids and followers/ids not working in oauth

2010-10-25 Thread jlezard
Hello, If you use the console to call the method friends/ids (like http://api.twitter.com/1/friends/ids.json?user_id=12345 ) it no longer returns a nicely formated json, in fact it returns something completly wrong like 4 ids for someone who has 250 friends I was heavily relying on this metho

Re: [twitter-dev] friends list in Site Stream

2010-10-20 Thread Naoki Hiroshima
Yes, my program is making hundreds of connections to *Site* Stream and receiving updates for tens of thousands of users. -- @N On Wed, Oct 20, 2010 at 12:08 PM, Tom van der Woerdt wrote: > Your programs? Are you sure you don't mean User Streams? > > Tom > > > On 10/20/10 8:53 PM, Naoki Hiroshim

Re: [twitter-dev] friends list in Site Stream

2010-10-20 Thread Tom van der Woerdt
Your programs? Are you sure you don't mean User Streams? Tom On 10/20/10 8:53 PM, Naoki Hiroshima wrote: > Ok, maybe it's trivial in terms of the size of data sent from the > server. But it seems taking a long time to receive all of those lists, > and be ready to get status updates. > If allowed

Re: [twitter-dev] friends list in Site Stream

2010-10-20 Thread Naoki Hiroshima
Ok, maybe it's trivial in terms of the size of data sent from the server. But it seems taking a long time to receive all of those lists, and be ready to get status updates. If allowed, I'd like my programs to receive status updates as soon as they get connected. -- @N On Wed, Oct 20, 2010 at 9:

Re: [twitter-dev] friends list in Site Stream

2010-10-20 Thread John Kalucki
This amount of data is trivial compared to the total amount of data sent over Site Streams. The friends list per user is roughly the size of a tweet or two. We have to weigh the cost of maintaining the feature vs. the bandwidth and CPU savings. Unless the savings is significant, generally the optim

[twitter-dev] friends list in Site Stream

2010-10-19 Thread N
Hi there, I've been playing with Site Stream for a bit, and I have a request. When a client connects to the server, it returns a series of the friend list for each users. Can you make this optional? Receiving a lot of friends data for thousands of users is a quite bit of trafic and wasteful unles

Re: [twitter-dev] friends/ids requires authentication now?

2010-09-16 Thread Taylor Singletary
Hi UncleYa, We have some lingering issues from the basic auth shut off that result in the occasional, incorrect error like this when being rate limited. Hope to have those all cleaned up soon. Part of your post suggests you may have been getting a different kind of error when you application was

[twitter-dev] friends/ids requires authentication now?

2010-09-16 Thread UncleYa
Hello. Today I was testing my web-application that uses "friends/ids" API function. First several times all was correct. But later application stopped working. That isn't rate limiting. And, when I call this function through browser (entering something like this "http://api.twitter.com/1/friends/id

[twitter-dev] Friends and Followers Resources for Protected Accounts

2010-09-09 Thread Vega
Going through the website. I was able to jump from a list to a users page. Even though the user is protected I can see their followers and who they are following. If I use the api against that user to get the users follower ids I get: "The remote server returned an error: (401) Unauthorized." Here

Re: [twitter-dev] Friends

2010-08-31 Thread Matt Harris
Hey, I'm not sure which library you are using here, could you explain the language you are using and a link to the library so we can help debug. Thanks, Matt On Thu, Aug 26, 2010 at 2:23 PM, garyz wrote: > Is anyone else having problem with TwitterOauth and friends? > > I'm trying to create fri

[twitter-dev] Friends

2010-08-26 Thread garyz
Is anyone else having problem with TwitterOauth and friends? I'm trying to create friends with: ret = @client.friend("twittername") And the response I get is a null ret and "test" shows up on the console. -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates

Re: [twitter-dev] Friends and followers

2010-05-26 Thread philip crawford
Probably a naming mistake made early on that would have been too much effort to change later on. Clearly though, mutual following indicates "Friends" more that the unidirectional follow does. In my system, we say "following" and "friends" like you suggest. A bit confusing, but I think easier tha

Re: [twitter-dev] Friends and followers

2010-05-25 Thread John Kalucki
Twitter has evolved quite a bit over the last 4 years. It's not always possible to evolve the API at the same pace. I wouldn't say that mutual followers are friends. They're just mutual followers. On Tue, May 25, 2010 at 7:43 PM, Miles Parker wrote: > This question is sort of pedantic, but I'

[twitter-dev] Friends and followers

2010-05-25 Thread Miles Parker
This question is sort of pedantic, but I'm wondering why the API refers to "friends" instead of "followers". The API say's that "friends" == "following", but I understand (e.g. see this nice little article http://andrewchenblog.com/2009/03/16/friends-versus-followers-twitters-elegant-design-for-gr

Re: [twitter-dev] friends/ids missing cursor information with oAuth?

2010-04-27 Thread Taylor Singletary
Hi Andrew, I just did a few ad hoc tests and was able to get the fields to show up in JSON and XML responses, both with OAuth and using Basic Auth. Is it possible that when the value is zero to JSON key/pair, your implementation might be hiding the result from you in some way? Taylor Singletary

[twitter-dev] friends/ids missing cursor information with oAuth?

2010-04-27 Thread Andrew Horn
Hi all I've been working with the friends/ids endpoint and it seems that the next_cursor and previous_cursor are missing from the json response if oAuth is used to authenticate. The cursors are present using simple auth. Is anyone else seeing this, or am I missing something? Thanks in advance, A

[twitter-dev] friends/ids and cursor

2009-10-04 Thread Abava
requests for friends/ids with cursor=-1 parameter via API (through Yahoo Pipe) returns empty set The same request for .xml data right from browser returns correct data.

[twitter-dev] friends/ids returns 400 Bad request

2009-10-04 Thread Abava
requests for friends/ids return 400 Bad request via API (through Yahoo Pipe). The same request for .xml data right from browser returns correct data. E.g.: http://www.twitter.com/friends/ids/abava.xml - always work from browser and the same request does not work via API (through Yahoo pipe) We've

[twitter-dev] "friends" and "followers" methods in docs

2009-10-04 Thread Jesse Stay
I noticed that the "friends" and "followers" methods aren't on the docs any more here: http://apiwiki.twitter.com/Twitter-API-Documentation Did I miss the memo that these were being deprecated? Why aren't they in the docs? Thanks, Jesse

[twitter-dev] friends/ids returning more users than statuses/friends

2009-09-17 Thread Mark Sievers
For user 728293. friends/ids returns 154 ids where statuses/friends returns 153 users over 2 pages. The missing user is 15699041 who actually works in my office, and whose account is still active and unsuspended. Has anyone else noticed this behaviour or can explain it? M

[twitter-dev] Friends Ids API

2009-09-10 Thread Alex Popescu
Hi guys, I don't seem to have found any trace of this report before, so I thought I should post it. According to the http://apiwiki.twitter.com/Twitter-REST-API-Method:-friendsĀ ids documentation, you can actually get the results using any of the following 4 URIs: http://twitter.com/friends/ids/

[twitter-dev] friends/ids now returns w/ 1-5% random duplicates (as of this morning)

2009-09-05 Thread PJB
The fix to last nights 5000 limit to friends/ids, followers/ids now returns with approximately 1-5% duplicates. For example: User1: followers: 32795 unique followers: 32428 User2: friends: 32350 unique friends: 32046 User3: followers: 19243 unique followers: 19045 NEITHER of these figures co

[twitter-dev] friends/ids order

2009-08-28 Thread Peter Boctor
Hi all, Does the friends/ids API return the list of friends in follow order? By follow order I mean the first in the list is the first person followed and the last on the list is the last person followed. I have been assuming that this is true, but it appears that this might have changed recentl

[twitter-dev] Friends timeline integration in My Opera latest activities

2009-08-12 Thread Cosimo
Hi there, just a quick note to say that at My Opera (http://my.opera.com) we developed and sent live an integration with Twitter that allows our users to see their friends timeline in their latest activities "stream" on My Opera. The number of active users is not so high, and we cache twitter AP

[twitter-dev] friends timeline change: Temporary or permanent?

2009-08-06 Thread TjL
I just tried this curl -D - -s --netrc 'http://twitter.com/statuses/friends_timeline.xml?since_id=3166251802&count=200' and got back this: HTTP/1.1 302 Moved Temporarily Content-Length: 0 Location: /statuses/friends_timeline.xml?since_id=3166251802&count=200?0115dfe8 Since my program is design

[twitter-dev] friends timeline help

2009-07-16 Thread nite21
hi all friends i want to show my friends timeline in flash im using this loadTwitterXML("http://twitter.com/statuses/friends_timeline/ shanebond1982.xml"); but it is giving me an IOError Error opening URL 'http://twitter.com/statuses/friends_timeline/ shanebond1982.xml' Error #2044: Unhandle

[twitter-dev] friends/ids Limits

2009-07-12 Thread whoiskb
Has anyone come up with a good number where a call to the social graph methods returns a 403? I have made calls that return over 30,000 ids, but I am curious what the limit is. Also, the general idea is that if you have someone that has a large following, you would then implement paging. Why is

[twitter-dev] Friends request

2009-04-30 Thread Jeff Bishop
Hello, If I request a listing of friends should it include all people who I added as a friend throughout time even though I may have un-followed them? That is what I am seeing. Do I need to use the social graph Friend method to filter those out? Jeff

[twitter-dev] friends ids / followers ids .. any arguments?

2009-03-21 Thread Adrian
I was wondering if it's possible for arguments to be passed to: http://twitter.com/followers/ids/USER.json and http://twitter.com/friends/ids/USER.json in order to limit the response and reverse the order, ie http://twitter.com/friends/ids/USER.xml?count=160&order=newest thx.

[twitter-dev] Friends and followers listing ends abruptly for large numbers

2009-03-18 Thread Patrick
I'm using the api to retrieve friends and followers for a popular user but it seems the api and the twitter friends and followers webpage end the listing quite early in the listing. (I'm assuming the webpages just use the api behind the scenes) For example check out stephenfry's profile... He's

[twitter-dev] friends/status/favorite count in basic user object

2009-03-09 Thread blairblends
When requested a list of friends/followers via /status/friends and / status/followers, I've always found it limiting that only the "followers_count" is provided for each user, while "friends_count", "favourites_count", and "statuses_count" is left off when I consider this to be basic user informat