[twitter-dev] tmhOAuth callbacks interrupts

2010-12-22 Thread Senya
Hi, All! I have a problem with thmhOAuth. Here is the code, it is like an example from https://github.com/themattharris/tmhOAuth: --- require_once(config.php); require_once(tmhOAuth.php); require_once(functions.php); function

[twitter-dev] Search API from_user_id doesn't match up with the proper Twitter user_id

2010-12-22 Thread Corey Ballou
I just wanted to bring group-wide awareness to the fact that search results from Twitter do not return an actual user_id. This has been a known defect (and yes, I do believe it's a *very large* defect) going on over 2 years now. This is a call to arms to get this shit fixed. I can't believe it's

[twitter-dev] Re: Search API from_user_id doesn't match up with the proper Twitter user_id

2010-12-22 Thread Corey Ballou
Also, while it would be possible to use screen names for relations (i.e. from_user), this would have a very negative side effect. Mainly, if a user were to change their Twitter account name, previous relations would be lost. On Dec 22, 9:44 am, Corey Ballou ball...@gmail.com wrote: For

Re: [twitter-dev] Search API from_user_id doesn't match up with the proper Twitter user_id

2010-12-22 Thread Adam Green
I'm sure Taylor or Matt will reply politely to this rant. I don't work for Twitter, so I'd like to take on your attitude of entitlement directly towards this free service. Your basic approach can be summed up as How dare Twitter have problems in a totally free API that I can use to build a

[twitter-dev] List of applications

2010-12-22 Thread Trevor
I am working on some automation for our setup and I was wondering if their is a way to get a list of the applications that you have created under your account? -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi

[twitter-dev] tc2.cpp broken ?

2010-12-22 Thread guysoffer
Hi, I have an application that has been working for a over a month now, using brooks' tc2.cpp code for reading twitter statuses only. I am now getting authentication error, does anyone know if there has been an OAuth change ? or is this a temporary twitter bug ? Thanks in advance, Guy. --

[twitter-dev] Return NULL in JSON XML

2010-12-22 Thread smallbighead
There's a problem when I using twitter API about JSON response. Here is the sample code: $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $access_token['oauth_token'], $access_token['oauth_token_secret']); $content = $connection-get('statuses/followers'); When I do this the response

[twitter-dev] How to access to friendship data of twitter users

2010-12-22 Thread Xintao Liu
Hello! If I want to access all of the friendship data of twitter users, i.e. how twitter users connect with each other, is it possible to do it? I am not interested in other information of users such as name, gender and so on. In other words, I just want to get the network of twitter users, no

Re: [twitter-dev] Return NULL in JSON XML

2010-12-22 Thread Abraham Williams
JSON is used by default so you should be using $content = $connection-get('statuses/followers'); Abraham - Abraham Williams | Hacker Advocate | abrah.am @abraham https://twitter.com/abraham | github.com/abraham | blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private.

[twitter-dev] Taking over a suspended account

2010-12-22 Thread Adam Green
I have a client who wants an account name that is owned by someone else. The account has been suspended for a long time, the client says. Is there a procedure or an email address they can use to apply to get that account name? I suggested just moving to another name, but they *really* want this

[twitter-dev] api_endpoint for site streams?

2010-12-22 Thread Temo
What are the signing_endpoint, and api_endpoint for sitestreams? I'm assuming they're both - http://betastream.twitter.com but get OAuth::Unauthorized: 401 Unauthorized when I try to obtain a request token. My app has been whitelisted for the Site Streams Whitelist Beta any help would be

[twitter-dev] Re: How to access to friendship data of twitter users

2010-12-22 Thread epomqo
Have a look here: http://an.kaist.ac.kr/traces/WWW2010.html The authors described how you can get a social graph from Twitter, and there is even a ready-to-use social graph of many Twitter users available for you to download. On Dec 22, 3:31 pm, Xintao Liu liuxinta...@gmail.com wrote: Hello!

[twitter-dev] Reconnection to Streaming API

2010-12-22 Thread epomqo
Hi All, I was trying to write some shell scripts to do the following job: when the Streaming API stops working for whatever reason, make a reconnection immediately. Here is how I did it: I wrote a script called check.sh: c=$(ps aux | grep curl|wc -l) if [[ $c -eq 1 ]] % which means there is no

Re: [twitter-dev] Search API from_user_id doesn't match up with the proper Twitter user_id

2010-12-22 Thread Robbie Coleman
I think twitter's response to this call to arms should be the HTTP Status Code: 420 - Chill ;-} -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker:

Re: [twitter-dev] 4294967295

2010-12-22 Thread Dan Checkoway
I just wanted to follow up on this, because the issue continues to happen, and it gets more and more interesting. We've now been seeing user.listed_count coming back as 4294967293 on occasion. So just to recap, we have now seen these values in the user.listed_count field: 4294967295 (a.k.a.

[twitter-dev] Re: Need help to develop twitter application, Plz reply me

2010-12-22 Thread Bess
Are you coding the Twitter app in Lua? Not sure there is Lua OAuth Library to support Twitter API? You need to be more specific in your app in order to get some more help. On Dec 21, 9:22 pm, roopesh rai roopesh.ra...@gmail.com wrote: It is in Lua On Tue, Dec 21, 2010 at 4:13 PM, Amine

[twitter-dev] ABOUT TWITTER API..............

2010-12-22 Thread indhu
http://123maza.com/28/come123/ -- 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:

Re: [twitter-dev] How to access to friendship data of twitter users

2010-12-22 Thread Shannon M. Rush
Maybe these calls would be a good start for you: http://dev.twitter.com/doc/get/friends/ids http://dev.twitter.com/doc/get/followers/ids Shannon On Wed, Dec 22, 2010 at 7:31 AM, Xintao Liu liuxinta...@gmail.com wrote: Hello! If I want to access all of the friendship data of twitter users,

[twitter-dev] Re: Oauth timeout at access_token request

2010-12-22 Thread Dave McCall
I get great performance in the request_token call. I've racked my brain trying to come up with a way to send the same oauth headers some other way (other than writing a php page or something to do the same). I'm using .Net 1.1 standard HTTPWebRequest methods to do this. I would expect them to

[twitter-dev] Re: After authenticating application I get redirected to connect.php

2010-12-22 Thread Preetish
Ok .. I had to uncomment session.save_path in php.ini ... My hosting provider kept it commnted by default On Dec 20, 5:32 pm, Preetish preetis...@gmail.com wrote: Hi, I was developing a Facebook application for twitter. Before that I wanted to try out abraham's twitter oauth library.So, I set

[twitter-dev] Feed No Longer Working

2010-12-22 Thread JonP
I run a website called AthletesWhoTweet.com, recently my web site has stopped pulling in the feeds from Twitter and I'm not sure why. My guess is that my code is totally out of date, as I had been using it for over two years. Basically, what I had been doing was pulling down a list of the most

[twitter-dev] Re: Search API from_user_id doesn't match up with the proper Twitter user_id

2010-12-22 Thread Corey Ballou
I'm sure I came off a little strong in the initial post; unfortunately for me google groups doesn't supply an edit button. I think there is still a grain of merit to the request to fix the issue, regardless of the API being free. I'm interest in knowing the trade-offs of Twitter essentially

Re: [twitter-dev] Re: Search API from_user_id doesn't match up with the proper Twitter user_id

2010-12-22 Thread Adam Green
Yeah, well the call to arms may have been over the top. :) I agree that Twitter should fix the search API. Every time I ask, the answer is that it will be done eventually, and that it will have entities and everything else the streaming API has. I think this means that it will be the streaming

Re: [twitter-dev] 4294967295

2010-12-22 Thread Taylor Singletary
It's going to be a little bit of time before we can totally prevent these values from occurring. Right now, you should probably just consider this value as unknown rather than necessarily null, 0, or otherwise. The team responsible for the low level component causing the bug has a fix planned,

[twitter-dev] Re: How to access to friendship data of twitter users

2010-12-22 Thread L. Mohan Arun
how twitter users connect with each other, is it possible to do it? Yes. I just want to get the network of twitter users, no other information. In addition to the ones mentioned by Shannon, also see http://dev.twitter.com/doc/get/friendships/show Returns detailed information about the