[twitter-dev] "Sign in with twitter" w/o any further rights?

2009-06-14 Thread Nicole Simon
As I undertand it, a twitter oauth process will give me as the application either read or read write access. Which means - unless I am mistaken - that with read access the app can read user's DMs. If so, would there be a way to have a third status named Authenticate or anything like it to indicate

[twitter-dev] Re: Available Twitter Curl with PHP Functions

2009-06-14 Thread Abraham Williams
Not sure what you are looking for but there are a number of PHP library that work with Twitter's API. I'm sure several of them use curl: http://apiwiki.twitter.com/Libraries#PHP On Sat, Jun 13, 2009 at 04:08, Niju Mohan C P wrote: > > Hello, > > Can anyone tell me the available twitter curl with

[twitter-dev] Re: Mwd mobile for twitter not working correctly

2009-06-14 Thread Abraham Williams
Sounds like a problem specific to dabr. You will probably get a better answer faster by contacting the dabr developers. Abraham On Mon, Jun 15, 2009 at 00:16, @LiveCrunch wrote: > > See I can login, I can see all replies all dm's yet on home page I > only see 1 tweet , something happened after t

[twitter-dev] Re: Mwd mobile for twitter not working correctly

2009-06-14 Thread @LiveCrunch
See I can login, I can see all replies all dm's yet on home page I only see 1 tweet , something happened after twitteropolypse On Jun 14, 9:56 pm, Abraham Williams <4bra...@gmail.com> wrote: > You are going to have to provide more information in order to get any help. > A good start is to add som

[twitter-dev] Re: 'verified' attribute in api responses?

2009-06-14 Thread Abraham Williams
On Sun, Jun 14, 2009 at 23:17, dean.j.robinson wrote: > > Any plans to add an attribute to the API responses to indicate if a > user is a "verified" user? Would be nice if this info was available so > that it could be displayed against the appropriate tweeters as needed. Already added. See examp

[twitter-dev] all conversations

2009-06-14 Thread braver
What percentage of all tweets are replies to others, i.e. contain @nick? We do research on dialogue and I'd like to get as many conversations as possible. So far the only reliable way I see to do it is crawl. Even with the /gardenhose I'm not sure that I'm capturing enough from each conversatio

[twitter-dev] 'verified' attribute in api responses?

2009-06-14 Thread dean.j.robinson
Any plans to add an attribute to the API responses to indicate if a user is a "verified" user? Would be nice if this info was available so that it could be displayed against the appropriate tweeters as needed. Also swapped my own groups implementation in Hahlo4 for the saved_searches api last nig

[twitter-dev] Re: best practice for dealing with streaming api connection close

2009-06-14 Thread AJ Chen
John, great information. thanks a lot. I'll put in a proper wait time before next re-connection. -aj On Sun, Jun 14, 2009 at 8:14 PM, John Kalucki wrote: > > AJ, > > If you had a valid connection and the connection drops, reconnect > immediately. This is encouraged! > > If you attempt a connecti

[twitter-dev] Re: best practice for dealing with streaming api connection close

2009-06-14 Thread John Kalucki
AJ, If you had a valid connection and the connection drops, reconnect immediately. This is encouraged! If you attempt a connection and get a TCP or IP level error, back off linearly, but cap the backoff to something fairly short. Perhaps start at 20 milliseconds, double, and cap at 15 seconds. T

[twitter-dev] Re: Mwd mobile for twitter not working correctly

2009-06-14 Thread Abraham Williams
You are going to have to provide more information in order to get any help. A good start is to add some logging and see what API call is actually being used. Test that API call using curl and if it works fine then there is probably a logic issue in your code somewhere. Abraham On Sun, Jun 14, 2009

[twitter-dev] best practice for dealing with streaming api connection close

2009-06-14 Thread AJ
The streaming api is great, but it sometimes closes the connection for whatever reason. my realtime system must figure out when to reconnect automatically. the auto-reconnection can't blindly request a connection whenever it is not connected, otherwise it will floor the api and may cause the api

[twitter-dev] Re: Twitpocalypse and yajl

2009-06-14 Thread Matt Sanford
Hi there, Someone emailed me directly to mention that the gist linked to still has a hard coded string length (strtoul is using 10) that would stop working on the newly supported long numbers (up to 20 digits). I'm not quite sure why they emailed me directly but I'll withhold their na

[twitter-dev] Re: Tweets are not showing up in search results, have not been since Thursday

2009-06-14 Thread Chad Etzel
Hi Ron, I left a comment on your blog explaining the answer to your question, but maybe it didn't go through. A while ago it was decided to remove "trending bots/accounts" from search results because they really did clutter the results. One of my bots/accounts was removed as well, and you're co

[twitter-dev] Mwd mobile for twitter not working correctly

2009-06-14 Thread @LiveCrunch
I run dabr code on http://mwd.com/mobile/index.php when you login just type index.php again because I placed .html file. Well the problem is that it only shows 1 tweet per refresh , nothing really changed one thing I can think of mwd marked as spam mwd was affected by twitteropolypse (but I dou

[twitter-dev] Tweets are not showing up in search results, have not been since Thursday

2009-06-14 Thread Ron Evans
I have noticed that tweets from my twitter account @thumbfight suddenly stopped appearing in the Twitter search results starting on Thursday. Anyone else have this problem? I submitted a Twitter support request, which was closed by an automated program they have regarding new Twitter accounts. Th

[twitter-dev] Re: Tweets are not showing up in search results, have not been since Thursday

2009-06-14 Thread Chris Thomson
A common reason that an account wouldn't show up in search is because it is being investigated for spam. See [1] for more details. -Chris Thomson 1 - http://help.twitter.com/forums/10713/entries/16817 On Sun, Jun 14, 2009 at 12:54 PM, Ron Evans wrote: > > I have noticed that tweets from my twi

[twitter-dev] Re: Twitpocalypse II: this time it's unsigned

2009-06-14 Thread abrahamvegh
On Jun 14, 12:42 am, Carlos wrote: > Has twitter changed to 64bits internally? They're wy ahead of you - see here: http://twitter.com/twitterapi/status/2048659057 Abraham Vegh http://twitter.com/abrahamvegh

[twitter-dev] Re: Twitpocalypse II: this time it's unsigned

2009-06-14 Thread Dossy Shiobara
On 6/14/09 12:59 AM, Andrew Badera wrote: I dunno about you LAMPier guys, but in my mostly SQL Server world, I sort by a created date/time stamp (my own internal, or Twitter's published stamp) if I needed items in order of creation, and possibly a ROW_NUMBER() call for paging ... never, ever, ev