[twitter-dev] Re: When requesting user updates api returns 502 error

2009-07-07 Thread Kaan ŞENGÜL

For example, my username is gkaans and I want all of my tweets. At
first, I want to get status count by this url ( and using System.Xml
library in C#)

http://twitter.com/statuses/user_timeline/; + user.username + .xml?
count=1

When I get the number of tweets, I rerequest that user's timeline but
this time count param becomes user's number of statuses.

http://twitter.com/statuses/user_timeline/; + user.username + .xml?
count= + user.statusCount;

For example my username is gkaans and number of updates is1303, so my
request url is: http://twitter.com/statuses/user_timeline/gkaans.xml?count=1303
but it returns 502 error. I realize that when I typed it to the
browser's adress bar, there is no problem.



On Jul 7, 12:54 am, Doug Williams d...@twitter.com wrote:
 Kaan,Please provide more details about what you are doing and how you are
 trying to obtain the data. Without any of these details, it's hard to deduce
 why you are getting a 502 Timeout.

 Thanks,
 Doug

 2009/7/6 Kaan ŞENGÜL gka...@gmail.com



  I'm working on a project that needs one person's timeline, I mean all
  of the updates from a specific user. But for large users API returns
  502 error.

  Any suggestions?


[twitter-dev] Re: When requesting user updates api returns 502 error

2009-07-07 Thread Doug Williams
Kaan,
The documentation for the method [1] states that the limit for the count
parameter is 200. Therefore, you will have to use a combination of the count
and page parameter to access all of the tweets (up to 3200 [2]) for a given
user.

1.
http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-user_timeline
2.
http://apiwiki.twitter.com/Things-Every-Developer-Should-Know#6Therearepaginationlimits

Thanks,
Doug



2009/7/6 Kaan ŞENGÜL gka...@gmail.com


 For example, my username is gkaans and I want all of my tweets. At
 first, I want to get status count by this url ( and using System.Xml
 library in C#)

 http://twitter.com/statuses/user_timeline/; + user.username + .xml?
 count=1

 When I get the number of tweets, I rerequest that user's timeline but
 this time count param becomes user's number of statuses.

 http://twitter.com/statuses/user_timeline/; + user.username + .xml?
 count= + user.statusCount;

 For example my username is gkaans and number of updates is1303, so my
 request url is:
 http://twitter.com/statuses/user_timeline/gkaans.xml?count=1303
 but it returns 502 error. I realize that when I typed it to the
 browser's adress bar, there is no problem.



 On Jul 7, 12:54 am, Doug Williams d...@twitter.com wrote:
  Kaan,Please provide more details about what you are doing and how you are
  trying to obtain the data. Without any of these details, it's hard to
 deduce
  why you are getting a 502 Timeout.
 
  Thanks,
  Doug
 
  2009/7/6 Kaan ŞENGÜL gka...@gmail.com
 
 
 
   I'm working on a project that needs one person's timeline, I mean all
   of the updates from a specific user. But for large users API returns
   502 error.
 
   Any suggestions?



[twitter-dev] Re: When requesting user updates api returns 502 error

2009-07-07 Thread Kaan ŞENGÜL

Thanks for your reply. I'll try that.. Thank you so much again..

On Jul 7, 9:57 am, Doug Williams d...@twitter.com wrote:
 Kaan,
 The documentation for the method [1] states that the limit for the count
 parameter is 200. Therefore, you will have to use a combination of the count
 and page parameter to access all of the tweets (up to 3200 [2]) for a given
 user.

 1.http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-user_t...
 2.http://apiwiki.twitter.com/Things-Every-Developer-Should-Know#6Therea...

 Thanks,
 Doug

 2009/7/6 Kaan ŞENGÜL gka...@gmail.com



  For example, my username is gkaans and I want all of my tweets. At
  first, I want to get status count by this url ( and using System.Xml
  library in C#)

 http://twitter.com/statuses/user_timeline/; + user.username + .xml?
  count=1

  When I get the number of tweets, I rerequest that user's timeline but
  this time count param becomes user's number of statuses.

 http://twitter.com/statuses/user_timeline/; + user.username + .xml?
  count= + user.statusCount;

  For example my username is gkaans and number of updates is1303, so my
  request url is:
 http://twitter.com/statuses/user_timeline/gkaans.xml?count=1303
  but it returns 502 error. I realize that when I typed it to the
  browser's adress bar, there is no problem.

  On Jul 7, 12:54 am, Doug Williams d...@twitter.com wrote:
   Kaan,Please provide more details about what you are doing and how you are
   trying to obtain the data. Without any of these details, it's hard to
  deduce
   why you are getting a 502 Timeout.

   Thanks,
   Doug

   2009/7/6 Kaan ŞENGÜL gka...@gmail.com

I'm working on a project that needs one person's timeline, I mean all
of the updates from a specific user. But for large users API returns
502 error.

Any suggestions?




[twitter-dev] stopping bit.ly automatic shortening of urls

2009-07-07 Thread infopete

we're writing an application to do live gps tracking with Twitter.

We'd like to be able to have a full url in a message which we could
parse or use as a direct web link.

GPS logging will be done on pocket pc based phones and we already have
a test application available (Twittrack).

We're extending the functionality of our silverlight application
http://tweepware.infonote.com to be able to display live gps updates
from Twitter.

But..

When we post to Twitter using the api our url is always shrunk to a
bit.ly url.

How can we stop this?

Regards

Pete


[twitter-dev] users.show follower count vs followers/ids count

2009-07-07 Thread Idan Gazit

Hi Folks,

I've run into an interesting question that's not really addressed by
the docs.

Background
=
In the documentation for followers/ids, it states: (Please note that
the result set isn't guaranteed to be 5000 every time as suspended
users will be filtered out.) In addition, it seems that http://bit.ly/lp2f6
(thread in this forum) claims that some zero-length pages may be
interspersed among the pages containing ID's

The Question
===
I've carefully retrieved every page of followers/ids for a user with
roughly 20K followers, stopping only after three consecutive zero
length pages. The total number of id's fetched is about 25% lower than
the count reported by users.show().

Can I surmise that the delta between the two follower counts is due to
suspended accounts? Is there a twitter api bug in play? Or a
combination of both?

Alternatively, an explanation of why the followers/ids total count
differs from that of users/show would be terribly interesting.

Thanks!

-Idan


[twitter-dev] Dumping Tweets

2009-07-07 Thread praveen kumar
Hai,

I have problem  while getting tweets from the API. According to Twitter API
Tweets *created_at *time is in GMT Timezone* *but some times *created_at* of
tweet is showing  *future time* (GMT).

Please help me, is there any changes that i should in my code while getting
tweets from Twitter API.


-- 
Regards,
Praveen Kumar .N
Software Engineer
Netelixir e-Marketing Solutions
Hyderabad
www.netelixir.com


[twitter-dev] Re: users.show follower count vs followers/ids count

2009-07-07 Thread Chris Prakoso
So far, according to my test, that is the case. i.e. the delta is the number
of suspended accounts.

HTH,
Chris

On Tue, Jul 7, 2009 at 12:18 PM, Idan Gazit i...@pixane.com wrote:


 Hi Folks,

 I've run into an interesting question that's not really addressed by
 the docs.

 Background
 =
 In the documentation for followers/ids, it states: (Please note that
 the result set isn't guaranteed to be 5000 every time as suspended
 users will be filtered out.) In addition, it seems that
 http://bit.ly/lp2f6
 (thread in this forum) claims that some zero-length pages may be
 interspersed among the pages containing ID's

 The Question
 ===
 I've carefully retrieved every page of followers/ids for a user with
 roughly 20K followers, stopping only after three consecutive zero
 length pages. The total number of id's fetched is about 25% lower than
 the count reported by users.show().

 Can I surmise that the delta between the two follower counts is due to
 suspended accounts? Is there a twitter api bug in play? Or a
 combination of both?

 Alternatively, an explanation of why the followers/ids total count
 differs from that of users/show would be terribly interesting.

 Thanks!

 -Idan



[twitter-dev] Re: Bug? 200 Http Code + Empty answer with Status/Show on a specific Status ID

2009-07-07 Thread Arnaud Meunier

Anybody experiencing the same problem?

On Jul 6, 2:32 pm, Arnaud arnaud.meun...@twitoaster.com wrote:
 Hello,

 I am experiencing a strange problem (bug?) with the /statuses/show
 method on a specific status ID: n° 2490912395. The problem is
 occurring since 2009-07-06 03:16:11 UTC.

 Could you please try to retrieve this status_id using the /statuses/
 show method? On my side, I get a 200 HTTP_CODE with an empty answer,
 which is obviously abnormal. I also tried to retrieve the status from
 twitter web interface:http://twitter.com/nowni/statuses/2490912395
 Working.

 It’s the only status throwing me such a result through the API. FYI,
 I’m using OAuth, authenticated with the status author (I also tried to
 retrieve it authenticated with another account, and I get the same
 result).


[twitter-dev] Re: Bug? 200 Http Code + Empty answer with Status/Show on a specific Status ID

2009-07-07 Thread Abraham Williams
I just pulled it unauthenticated and it worked fine. It was probably just a
temporary Twitter bug.

https://twitter.com/statuses/show/2490912395.xml

Abraham

On Tue, Jul 7, 2009 at 07:59, Arnaud Meunier
arnaud.meun...@twitoaster.comwrote:


 Anybody experiencing the same problem?

 On Jul 6, 2:32 pm, Arnaud arnaud.meun...@twitoaster.com wrote:
  Hello,
 
  I am experiencing a strange problem (bug?) with the /statuses/show
  method on a specific status ID: n° 2490912395. The problem is
  occurring since 2009-07-06 03:16:11 UTC.
 
  Could you please try to retrieve this status_id using the /statuses/
  show method? On my side, I get a 200 HTTP_CODE with an empty answer,
  which is obviously abnormal. I also tried to retrieve the status from
  twitter web interface:http://twitter.com/nowni/statuses/2490912395
  Working.
 
  It’s the only status throwing me such a result through the API. FYI,
  I’m using OAuth, authenticated with the status author (I also tried to
  retrieve it authenticated with another account, and I get the same
  result).




-- 
Abraham Williams | Community Evangelist | http://web608.org
Hacker | http://abrah.am | http://twitter.com/abraham
Project | http://fireeagle.labs.poseurtech.com
This email is: [ ] blogable [x] ask first [ ] private.


[twitter-dev] Re: stopping bit.ly automatic shortening of urls

2009-07-07 Thread Abraham Williams
There is no way to turn URL shortening off.

Two ways you could handle this though are:
1) Keep the URLs short enough that Twitter does not turn them into bitly
links. I don't think the exact size/composition is published so you would
have to experiment to see where that line is.
2) Shorten it yourself so you can control what comes after the /. It would
not be a direct link but you could parse it.

Abraham

On Tue, Jul 7, 2009 at 06:42, infopete p...@infonote.com wrote:


 we're writing an application to do live gps tracking with Twitter.

 We'd like to be able to have a full url in a message which we could
 parse or use as a direct web link.

 GPS logging will be done on pocket pc based phones and we already have
 a test application available (Twittrack).

 We're extending the functionality of our silverlight application
 http://tweepware.infonote.com to be able to display live gps updates
 from Twitter.

 But..

 When we post to Twitter using the api our url is always shrunk to a
 bit.ly url.

 How can we stop this?

 Regards

 Pete




-- 
Abraham Williams | Community Evangelist | http://web608.org
Hacker | http://abrah.am | http://twitter.com/abraham
Project | http://fireeagle.labs.poseurtech.com
This email is: [ ] blogable [x] ask first [ ] private.


[twitter-dev] Re: users.show follower count vs followers/ids count

2009-07-07 Thread Idan Gazit

Hey Chris,

Not that I doubt you (I saw your earlier thread on the subject) -- I
just want to hear it from the mouths of the twitter devs themselves.

Hey devs, throw us a bone! :)

-I

On Jul 7, 3:41 pm, Chris Prakoso brajamu...@gmail.com wrote:
 So far, according to my test, that is the case. i.e. the delta is the number
 of suspended accounts.

 HTH,
 Chris

 On Tue, Jul 7, 2009 at 12:18 PM, Idan Gazit i...@pixane.com wrote:

  Hi Folks,

  I've run into an interesting question that's not really addressed by
  the docs.

  Background
  =
  In the documentation for followers/ids, it states: (Please note that
  the result set isn't guaranteed to be 5000 every time as suspended
  users will be filtered out.) In addition, it seems that
 http://bit.ly/lp2f6
  (thread in this forum) claims that some zero-length pages may be
  interspersed among the pages containing ID's

  The Question
  ===
  I've carefully retrieved every page of followers/ids for a user with
  roughly 20K followers, stopping only after three consecutive zero
  length pages. The total number of id's fetched is about 25% lower than
  the count reported by users.show().

  Can I surmise that the delta between the two follower counts is due to
  suspended accounts? Is there a twitter api bug in play? Or a
  combination of both?

  Alternatively, an explanation of why the followers/ids total count
  differs from that of users/show would be terribly interesting.

  Thanks!

  -Idan


[twitter-dev] Re: users.show follower count vs followers/ids count

2009-07-07 Thread Chris Prakoso
No problem. Yes, a confirmation would be good.
If I could just written-off all users in the delta as suspended, it would
save me a lot of API calls.

Chris

On Tue, Jul 7, 2009 at 2:46 PM, Idan Gazit i...@pixane.com wrote:


 Hey Chris,

 Not that I doubt you (I saw your earlier thread on the subject) -- I
 just want to hear it from the mouths of the twitter devs themselves.

 Hey devs, throw us a bone! :)

 -I

 On Jul 7, 3:41 pm, Chris Prakoso brajamu...@gmail.com wrote:
  So far, according to my test, that is the case. i.e. the delta is the
 number
  of suspended accounts.
 
  HTH,
  Chris
 
  On Tue, Jul 7, 2009 at 12:18 PM, Idan Gazit i...@pixane.com wrote:
 
   Hi Folks,
 
   I've run into an interesting question that's not really addressed by
   the docs.
 
   Background
   =
   In the documentation for followers/ids, it states: (Please note that
   the result set isn't guaranteed to be 5000 every time as suspended
   users will be filtered out.) In addition, it seems that
  http://bit.ly/lp2f6
   (thread in this forum) claims that some zero-length pages may be
   interspersed among the pages containing ID's
 
   The Question
   ===
   I've carefully retrieved every page of followers/ids for a user with
   roughly 20K followers, stopping only after three consecutive zero
   length pages. The total number of id's fetched is about 25% lower than
   the count reported by users.show().
 
   Can I surmise that the delta between the two follower counts is due to
   suspended accounts? Is there a twitter api bug in play? Or a
   combination of both?
 
   Alternatively, an explanation of why the followers/ids total count
   differs from that of users/show would be terribly interesting.
 
   Thanks!
 
   -Idan



[twitter-dev] Re: Bug? 200 Http Code + Empty answer with Status/Show on a specific Status ID

2009-07-07 Thread Arnaud Meunier

The bug is only occuring in JSON format. Try this :

https://twitter.com/statuses/show/2490912395.json

I made tests with both Authenticated (HTTP Basic  OAuth) and
UnAuthenticated requests. It still doesn't work.

Arnaud.

On Jul 7, 3:04 pm, Abraham Williams 4bra...@gmail.com wrote:
 I just pulled it unauthenticated and it worked fine. It was probably just a
 temporary Twitter bug.

 https://twitter.com/statuses/show/2490912395.xml

 Abraham

 On Tue, Jul 7, 2009 at 07:59, Arnaud Meunier
 arnaud.meun...@twitoaster.comwrote:





  Anybody experiencing the same problem?

  On Jul 6, 2:32 pm, Arnaud arnaud.meun...@twitoaster.com wrote:
   Hello,

   I am experiencing a strange problem (bug?) with the /statuses/show
   method on a specific status ID: n° 2490912395. The problem is
   occurring since 2009-07-06 03:16:11 UTC.

   Could you please try to retrieve this status_id using the /statuses/
   show method? On my side, I get a 200 HTTP_CODE with an empty answer,
   which is obviously abnormal. I also tried to retrieve the status from
   twitter web interface:http://twitter.com/nowni/statuses/2490912395
   Working.

   It’s the only status throwing me such a result through the API. FYI,
   I’m using OAuth, authenticated with the status author (I also tried to
   retrieve it authenticated with another account, and I get the same
   result).

 --
 Abraham Williams | Community Evangelist |http://web608.org
 Hacker |http://abrah.am|http://twitter.com/abraham
 Project |http://fireeagle.labs.poseurtech.com
 This email is: [ ] blogable [x] ask first [ ] private.


[twitter-dev] Re: users.show follower count vs followers/ids count

2009-07-07 Thread Damon Clinkscales

 Alternatively, an explanation of why the followers/ids total count
 differs from that of users/show would be terribly interesting.


It used to be the case (at least when the feature first launched) that some
folks, particularly those who have large follower lists, had duplicate ids
in the followers/ids response.  At least that was my experience.

Don't know if this is still true, but you could check the uniqueness of the
set being returned, just for grins.

-damon

-- 
http://twitter.com/damon


[twitter-dev] Re: stopping bit.ly automatic shortening of urls

2009-07-07 Thread infopete

Thanks for the hint.

It looks like I get get this much in http://www.infonote.com/tw?1234567890123
before it gets converted to bit.ly

I'll look into compression algorithms to see what I can do.



On 7 July, 14:11, Abraham Williams 4bra...@gmail.com wrote:
 There is no way to turn URL shortening off.

 Two ways you could handle this though are:
 1) Keep the URLs short enough that Twitter does not turn them into bitly
 links. I don't think the exact size/composition is published so you would
 have to experiment to see where that line is.
 2) Shorten it yourself so you can control what comes after the /. It would
 not be a direct link but you could parse it.

 Abraham





 On Tue, Jul 7, 2009 at 06:42, infopete p...@infonote.com wrote:

  we're writing an application to do live gps tracking with Twitter.

  We'd like to be able to have a full url in a message which we could
  parse or use as a direct web link.

  GPS logging will be done on pocket pc based phones and we already have
  a test application available (Twittrack).

  We're extending the functionality of our silverlight application
 http://tweepware.infonote.comto be able to display live gps updates
  from Twitter.

  But..

  When we post to Twitter using the api our url is always shrunk to a
  bit.ly url.

  How can we stop this?

  Regards

  Pete

 --
 Abraham Williams | Community Evangelist |http://web608.org
 Hacker |http://abrah.am|http://twitter.com/abraham
 Project |http://fireeagle.labs.poseurtech.com
 This email is: [ ] blogable [x] ask first [ ] private.- Hide quoted text -

 - Show quoted text -


[twitter-dev] Deletion page in Firefox 3.5

2009-07-07 Thread Mike

As can be seen in the screenshot, the numbers on the page where you
can delete your Twitter-account aren't correctly aligned in Firefox
3.5.

Screenshot: http://i32.tinypic.com/21bt3p.png


[twitter-dev] Re: Deletion page in Firefox 3.5

2009-07-07 Thread Matt Sanford


Hi Mike,

I opened a ticket for out front end team. Thanks for the bug  
report.


Thanks;
 – Matt Sanford / @mzsanford
 Twitter Dev

On Jul 7, 2009, at 8:39 AM, Mike wrote:



As can be seen in the screenshot, the numbers on the page where you
can delete your Twitter-account aren't correctly aligned in Firefox
3.5.

Screenshot: http://i32.tinypic.com/21bt3p.png




[twitter-dev] Re: API to find users based on email

2009-07-07 Thread Abraham Williams
http://code.google.com/p/twitter-api/issues/detail?id=353

Abraham

On Tue, Jul 7, 2009 at 11:13, David dors...@topofmind.com wrote:


 I have been digging around the API documentation all day and cannot
 really find how to do this.  I would like my app to be able to browse
 our users contacts and find matching users in Twitter (much like
 twitters main site does with google, yahoo, and aol). What methods
 would I use to do that?




-- 
Abraham Williams | Community Evangelist | http://web608.org
Hacker | http://abrah.am | http://twitter.com/abraham
Project | http://fireeagle.labs.poseurtech.com
This email is: [ ] blogable [x] ask first [ ] private.


[twitter-dev] API to find users based on email

2009-07-07 Thread David

I have been digging around the API documentation all day and cannot
really find how to do this.  I would like my app to be able to browse
our users contacts and find matching users in Twitter (much like
twitters main site does with google, yahoo, and aol). What methods
would I use to do that?


[twitter-dev] Problem with search api. BUG?

2009-07-07 Thread xabi

Hi there:

I'm trying to do a search like this:

curl -i http://search.twitter.com/search.atom?q=txcomptroller;

and I get this:

-- 8  8 -

link type=text/html rel=alternate href=http://twitter.com/
SanAngeloEcoDev/statuses/2516021916/
content type=htmlRT lt;a href=http://twitter.com/
txcomptrollergt;@txcomptrollerlt;/agt;: On the Money: See how
Texas local governments earn stimulus dollars and learn how to tap
into federal grants. http:// .../content

-- 8  8 -

As you can see the status ends with http:// ..., but if you go to
the real status http://twitter.com/SanAngeloEcoDev/statuses/
2516021916 you can see the whole status, in this example:

RT @txcomptroller: On the Money: See how Texas local governments earn
stimulus dollars and learn how to tap into federal grants. http://sn.im/majgz;

All the status is there! with the full URL at the end. So, is search
API limited? Is this a BUG? What's wrong?

Thanks in advance:

xabi


[twitter-dev] Re: Bug? 200 Http Code + Empty answer with Status/Show on a specific Status ID

2009-07-07 Thread Arnaud Meunier

Another example of a status affected by this bug:
https://twitter.com/statuses/show/2514621302.json

Once more, only JSON format seems to be failing.

Arnaud.

On Jul 7, 4:21 pm, Arnaud Meunier arnaud.meun...@twitoaster.com
wrote:
 The bug is only occuring in JSON format. Try this :

 https://twitter.com/statuses/show/2490912395.json

 I made tests with both Authenticated (HTTP Basic  OAuth) and
 UnAuthenticated requests. It still doesn't work.

 Arnaud.

 On Jul 7, 3:04 pm, Abraham Williams 4bra...@gmail.com wrote:

  I just pulled it unauthenticated and it worked fine. It was probably just a
  temporary Twitter bug.

 https://twitter.com/statuses/show/2490912395.xml

  Abraham

  On Tue, Jul 7, 2009 at 07:59, Arnaud Meunier
  arnaud.meun...@twitoaster.comwrote:

   Anybody experiencing the same problem?

   On Jul 6, 2:32 pm, Arnaud arnaud.meun...@twitoaster.com wrote:
Hello,

I am experiencing a strange problem (bug?) with the /statuses/show
method on a specific status ID: n° 2490912395. The problem is
occurring since 2009-07-06 03:16:11 UTC.

Could you please try to retrieve this status_id using the /statuses/
show method? On my side, I get a 200 HTTP_CODE with an empty answer,
which is obviously abnormal. I also tried to retrieve the status from
twitter web interface:http://twitter.com/nowni/statuses/2490912395
Working.

It’s the only status throwing me such a result through the API. FYI,
I’m using OAuth, authenticated with the status author (I also tried to
retrieve it authenticated with another account, and I get the same
result).

  --
  Abraham Williams | Community Evangelist |http://web608.org
  Hacker |http://abrah.am|http://twitter.com/abraham
  Project |http://fireeagle.labs.poseurtech.com
  This email is: [ ] blogable [x] ask first [ ] private.


[twitter-dev] Re: Bug? 200 Http Code + Empty answer with Status/Show on a specific Status ID

2009-07-07 Thread JDG
Seems like you should be opening a bug.

On Tue, Jul 7, 2009 at 10:31, Arnaud Meunier
arnaud.meun...@twitoaster.comwrote:


 Another example of a status affected by this bug:
 https://twitter.com/statuses/show/2514621302.json

 Once more, only JSON format seems to be failing.

 Arnaud.

 On Jul 7, 4:21 pm, Arnaud Meunier arnaud.meun...@twitoaster.com
 wrote:
  The bug is only occuring in JSON format. Try this :
 
  https://twitter.com/statuses/show/2490912395.json
 
  I made tests with both Authenticated (HTTP Basic  OAuth) and
  UnAuthenticated requests. It still doesn't work.
 
  Arnaud.
 
  On Jul 7, 3:04 pm, Abraham Williams 4bra...@gmail.com wrote:
 
   I just pulled it unauthenticated and it worked fine. It was probably
 just a
   temporary Twitter bug.
 
  https://twitter.com/statuses/show/2490912395.xml
 
   Abraham
 
   On Tue, Jul 7, 2009 at 07:59, Arnaud Meunier
   arnaud.meun...@twitoaster.comwrote:
 
Anybody experiencing the same problem?
 
On Jul 6, 2:32 pm, Arnaud arnaud.meun...@twitoaster.com wrote:
 Hello,
 
 I am experiencing a strange problem (bug?) with the /statuses/show
 method on a specific status ID: n° 2490912395. The problem is
 occurring since 2009-07-06 03:16:11 UTC.
 
 Could you please try to retrieve this status_id using the
 /statuses/
 show method? On my side, I get a 200 HTTP_CODE with an empty
 answer,
 which is obviously abnormal. I also tried to retrieve the status
 from
 twitter web interface:http://twitter.com/nowni/statuses/2490912395
 Working.
 
 It’s the only status throwing me such a result through the API.
 FYI,
 I’m using OAuth, authenticated with the status author (I also tried
 to
 retrieve it authenticated with another account, and I get the same
 result).
 
   --
   Abraham Williams | Community Evangelist |http://web608.org
   Hacker |http://abrah.am|http://twitter.com/abraham
   Project |http://fireeagle.labs.poseurtech.com
   This email is: [ ] blogable [x] ask first [ ] private.




-- 
Internets. Serious business.


[twitter-dev] Re: Problem with search api. BUG?

2009-07-07 Thread Matt Sanford


Hi there,

The issue here is that the status is over 140 characters so it is  
truncated. You can see the same on http://twitter.com/SanAngeloEcoDev,  
where the tweets ends in ... and only the direct status page  
includes the truncated section. This is something Twitter used to  
support but as far as I know it's something that should no longer be  
allowed. Please open a ticket at http://code.google.com/p/twitter-api/issues/entry 
 and we'll look into how the overly-long status got there in the  
first place.


Thanks;
 – Matt Sanford / @mzsanford
 Twitter Dev

[1] -
$ echo RT @txcomptroller: On the Money: See how Texas local  
governments earn stimulus dollars and learn how to tap into federal  
grants. http://sn.im/majgz; | wc -c

 148

On Jul 7, 2009, at 9:23 AM, xabi wrote:



Hi there:

I'm trying to do a search like this:

curl -i http://search.twitter.com/search.atom?q=txcomptroller;

and I get this:

-- 8  8 -

   link type=text/html rel=alternate href=http://twitter.com/
SanAngeloEcoDev/statuses/2516021916/
   content type=htmlRT lt;a href=http://twitter.com/
txcomptrollergt;@txcomptrollerlt;/agt;: On the Money: See how
Texas local governments earn stimulus dollars and learn how to tap
into federal grants. http:// .../content

-- 8  8 -

As you can see the status ends with http:// ..., but if you go to
the real status http://twitter.com/SanAngeloEcoDev/statuses/
2516021916 you can see the whole status, in this example:

RT @txcomptroller: On the Money: See how Texas local governments earn
stimulus dollars and learn how to tap into federal grants. http://sn.im/majgz 



All the status is there! with the full URL at the end. So, is search
API limited? Is this a BUG? What's wrong?

Thanks in advance:

xabi




[twitter-dev] Re: Bug? 200 Http Code + Empty answer with Status/Show on a specific Status ID

2009-07-07 Thread Arnaud Meunier

Just did it:
http://code.google.com/p/twitter-api/issues/detail?id=797


On Jul 7, 6:38 pm, JDG ghil...@gmail.com wrote:
 Seems like you should be opening a bug.

 On Tue, Jul 7, 2009 at 10:31, Arnaud Meunier
 arnaud.meun...@twitoaster.comwrote:





  Another example of a status affected by this bug:
 https://twitter.com/statuses/show/2514621302.json

  Once more, only JSON format seems to be failing.

  Arnaud.

  On Jul 7, 4:21 pm, Arnaud Meunier arnaud.meun...@twitoaster.com
  wrote:
   The bug is only occuring in JSON format. Try this :

  https://twitter.com/statuses/show/2490912395.json

   I made tests with both Authenticated (HTTP Basic  OAuth) and
   UnAuthenticated requests. It still doesn't work.

   Arnaud.

   On Jul 7, 3:04 pm, Abraham Williams 4bra...@gmail.com wrote:

I just pulled it unauthenticated and it worked fine. It was probably
  just a
temporary Twitter bug.

   https://twitter.com/statuses/show/2490912395.xml

Abraham

On Tue, Jul 7, 2009 at 07:59, Arnaud Meunier
arnaud.meun...@twitoaster.comwrote:

 Anybody experiencing the same problem?

 On Jul 6, 2:32 pm, Arnaud arnaud.meun...@twitoaster.com wrote:
  Hello,

  I am experiencing a strange problem (bug?) with the /statuses/show
  method on a specific status ID: n° 2490912395. The problem is
  occurring since 2009-07-06 03:16:11 UTC.

  Could you please try to retrieve this status_id using the
  /statuses/
  show method? On my side, I get a 200 HTTP_CODE with an empty
  answer,
  which is obviously abnormal. I also tried to retrieve the status
  from
  twitter web interface:http://twitter.com/nowni/statuses/2490912395
  Working.

  It’s the only status throwing me such a result through the API.
  FYI,
  I’m using OAuth, authenticated with the status author (I also tried
  to
  retrieve it authenticated with another account, and I get the same
  result).

--
Abraham Williams | Community Evangelist |http://web608.org
Hacker |http://abrah.am|http://twitter.com/abraham
Project |http://fireeagle.labs.poseurtech.com
This email is: [ ] blogable [x] ask first [ ] private.

 --
 Internets. Serious business.


[twitter-dev] Help with twitter profile.

2009-07-07 Thread Slicey

Basically I am trying to make a site where a user come to the site,
types in their username, song title, artist title, and uploads a song,
this then gets stored in a database along with a random generated
code.
What I am trying to do is make a twitter clone page of the users
profile. eg. if a user has the username blahblah and the random code
in the database is 3hr8e I want it so when I go to 
www.mysite.com/twitter.php?pwd=3hr8e
This is what I have tried however I can't get anything to show up. Is
there something I'm doing wrong?

?php
require (connect.php);
require (functions.php);
include(template/twitterheader.php);
// require the twitter library
require twitter.lib.php;

$pwd = mysql_real_escape_string($_GET['pwd']);
$result = mysql_query(SELECT * FROM songs WHERE pwd='$pwd');
$screen = mysql_fetch_array($result);
$username = $screen['username'];

// initialize the twitter class
$twitter = new Twitter($username);

// fetch your profile in xml format

$xml = $twitter-getUserTimeline();

/* display the raw xml
echo 'pre';
echo $xml;
echo '/pre';*/

$twitter_status = new SimpleXMLElement($xml);
foreach($twitter_status-status as $status){
echo 'div class=twitter_status';
foreach($status-user as $user){


}
echo $status-text;
echo $user-followers_count;
echo 'br/';
echo 'div class=twitter_posted_atstrongPosted at:/strong '.
$status-created_at.'/div';
echo '/div';
}



include(template/twitterfooter.php);
?

Function:

function getUserTimeline($options = array(), $format = 'xml') {
return $this-apiCall('statuses/user_timeline', 'get', $format,
$options, true);
}



[twitter-dev] Re: Stream API : Tracker

2009-07-07 Thread John Kalucki

A fix for this issue will be deployed this afternoon, PDT.

-John Kalucki
Services, Twitter inc.


On Jul 6, 12:21 pm, John Kalucki jkalu...@gmail.com wrote:
 The documentation is incorrect. But, instead of fixing the
 documentation, it's reasonable to fix the code. For the time being,
 you'll have to query for the three permutations.

 -JohnKalucki
 Services, Twitter Inc.

 On Jul 5, 9:30 pm, Cary Knoop carykn...@gmail.com wrote:

  Unlike the wiki documentation searching for instance for the keyword
  Tennis does not give results that include keywords #Tennis or
  @Tennis.

  Is this as designed or is this a bug?

  Cary


[twitter-dev] Re: Streaming API -- Code Change Required: follow parameter delimiter

2009-07-07 Thread John Kalucki

A reminder: Support for space separated track and follow lists will be
dropped in this afternoon's Streaming API deploy. Only comma separated
lists will be accepted.


On Jun 12, 11:53 am, John Kalucki jkalu...@gmail.com wrote:
 The follow post parameter now takes acommaseparated list of userids
 to follow in the /follow, /track and /birddog resources. This change
 is being made to support future features.

 Space separated lists will also be supported until Wednesday June 17
 to allow for transition.

 -John Kalucki
 Services, Twitter Inc.


[twitter-dev] Re: stopping bit.ly automatic shortening of urls

2009-07-07 Thread Brian Smith

Infopete wrote:
 
 It looks like I get get this much in
 http://www.infonote.com/tw?1234567890123
 before it gets converted to bit.ly

Try removing the ?. Some people have already researched the circumstances
under which URLs get shortened vs. left alone. IIRC, one requirement is that
all characters after the .com/ must be alphanumeric. Actually, I am not
sure that the length of the URL is even considered.

- Brian



[twitter-dev] Re: stopping bit.ly automatic shortening of urls

2009-07-07 Thread Chad Etzel

Yes, length is considered (I think 24 characters is a number I've
heard somewhere). Also, I've heard Al3x say that URL format is also
considered.  I'm not exactly sure what that entails, but I would guess
that some query string characters would make it a candidate for
shortening.

The best bet is to do the shortening yourself, or create some sort of
friendly format to avoid shortening.

It would be nice to have some official formatting rules exposed... I'm
pretty sure it's not a trade secret :)

-Chad

On Tue, Jul 7, 2009 at 1:31 PM, Brian Smithbr...@briansmith.org wrote:

 Infopete wrote:

 It looks like I get get this much in
 http://www.infonote.com/tw?1234567890123
 before it gets converted to bit.ly

 Try removing the ?. Some people have already researched the circumstances
 under which URLs get shortened vs. left alone. IIRC, one requirement is that
 all characters after the .com/ must be alphanumeric. Actually, I am not
 sure that the length of the URL is even considered.

 - Brian




[twitter-dev] from: modifier doesn't work when searching for hashtags

2009-07-07 Thread d...@daveboden.com

The from: operator successfully filters out posts from the user
@RetweetTestRecv when looking for posts with RetweetTestRecv in the
text. Here's the search string and corresponding URL:

-from:RetweetTestRecv RetweetTestRecv
http://search.twitter.com/search?q=-from:RetweetTestRecv+RetweetTestRecv

However, when searching not just for mentions of RetweetTestRecv but
specifically for the hashtag #RetweetTestRecv the from: filter no
longer applies and we see far more posts, some of them from
@RetweetTestRecv. Again, here's the search string and corresponding
URL. Notice the added #:

-from:RetweetTestRecv #RetweetTestRecv
http://search.twitter.com/search?q=-from:RetweetTestRecv+%23RetweetTestRecv

A relatively small issue, I know, but pretty important for my own
application. I'm going to have to work around it by getting more
results than I want then eliminating a lot of them.

Regards,
Dave


[twitter-dev] Re: from: modifier doesn't work when searching for hashtags

2009-07-07 Thread Abraham Williams
I get the same results for both links.

Abraham

On Tue, Jul 7, 2009 at 14:57, d...@daveboden.com d...@daveboden.com wrote:


 The from: operator successfully filters out posts from the user
 @RetweetTestRecv when looking for posts with RetweetTestRecv in the
 text. Here's the search string and corresponding URL:

 -from:RetweetTestRecv RetweetTestRecv
 http://search.twitter.com/search?q=-from:RetweetTestRecv+RetweetTestRecv

 However, when searching not just for mentions of RetweetTestRecv but
 specifically for the hashtag #RetweetTestRecv the from: filter no
 longer applies and we see far more posts, some of them from
 @RetweetTestRecv. Again, here's the search string and corresponding
 URL. Notice the added #:

 -from:RetweetTestRecv #RetweetTestRecv
 http://search.twitter.com/search?q=-from:RetweetTestRecv+%23RetweetTestRecv

 A relatively small issue, I know, but pretty important for my own
 application. I'm going to have to work around it by getting more
 results than I want then eliminating a lot of them.

 Regards,
 Dave




-- 
Abraham Williams | Community Evangelist | http://web608.org
Hacker | http://abrah.am | http://twitter.com/abraham
Project | http://fireeagle.labs.poseurtech.com
This email is: [ ] blogable [x] ask first [ ] private.


[twitter-dev] Re: from: modifier doesn't work when searching for hashtags

2009-07-07 Thread Chad Etzel

Ditto. I don't see any problem.
-Chad

On Tue, Jul 7, 2009 at 4:07 PM, Abraham Williams4bra...@gmail.com wrote:
 I get the same results for both links.

 Abraham

 On Tue, Jul 7, 2009 at 14:57, d...@daveboden.com d...@daveboden.com wrote:

 The from: operator successfully filters out posts from the user
 @RetweetTestRecv when looking for posts with RetweetTestRecv in the
 text. Here's the search string and corresponding URL:

 -from:RetweetTestRecv RetweetTestRecv
 http://search.twitter.com/search?q=-from:RetweetTestRecv+RetweetTestRecv

 However, when searching not just for mentions of RetweetTestRecv but
 specifically for the hashtag #RetweetTestRecv the from: filter no
 longer applies and we see far more posts, some of them from
 @RetweetTestRecv. Again, here's the search string and corresponding
 URL. Notice the added #:

 -from:RetweetTestRecv #RetweetTestRecv

 http://search.twitter.com/search?q=-from:RetweetTestRecv+%23RetweetTestRecv

 A relatively small issue, I know, but pretty important for my own
 application. I'm going to have to work around it by getting more
 results than I want then eliminating a lot of them.

 Regards,
 Dave



 --
 Abraham Williams | Community Evangelist | http://web608.org
 Hacker | http://abrah.am | http://twitter.com/abraham
 Project | http://fireeagle.labs.poseurtech.com
 This email is: [ ] blogable [x] ask first [ ] private.



[twitter-dev] Re: from: modifier doesn't work when searching for hashtags

2009-07-07 Thread d...@daveboden.com

Thanks for your replies. I now also see the results I'd expect. Just
to prove I'm not completely loopy, here's a screenshot of what I was
seeing. You can see all the requests from user RetweetTestRecv
included in the results there. When I hit refresh on the browser, it
changed to being good results:

http://sites.google.com/a/daveboden.com/home/twitterproblem

Anyway, all's well that ends well. I'm going to add a double-check
into my application to ignore this situation if it happens again; I'm
guessing it's some kind of intermittent problem caused by the re-
indexing of hashtags. Or something. :o)

Cheers,
Dave

On Jul 7, 9:16 pm, Chad Etzel jazzyc...@gmail.com wrote:
 Ditto. I don't see any problem.
 -Chad



 On Tue, Jul 7, 2009 at 4:07 PM, Abraham Williams4bra...@gmail.com wrote:
  I get the same results for both links.

  Abraham

  On Tue, Jul 7, 2009 at 14:57, d...@daveboden.com d...@daveboden.com wrote:

  The from: operator successfully filters out posts from the user
  @RetweetTestRecv when looking for posts with RetweetTestRecv in the
  text. Here's the search string and corresponding URL:

  -from:RetweetTestRecv RetweetTestRecv
 http://search.twitter.com/search?q=-from:RetweetTestRecv+RetweetTestRecv

  However, when searching not just for mentions of RetweetTestRecv but
  specifically for the hashtag #RetweetTestRecv the from: filter no
  longer applies and we see far more posts, some of them from
  @RetweetTestRecv. Again, here's the search string and corresponding
  URL. Notice the added #:

  -from:RetweetTestRecv #RetweetTestRecv

 http://search.twitter.com/search?q=-from:RetweetTestRecv+%23RetweetTe...

  A relatively small issue, I know, but pretty important for my own
  application. I'm going to have to work around it by getting more
  results than I want then eliminating a lot of them.

  Regards,
  Dave

  --
  Abraham Williams | Community Evangelist |http://web608.org
  Hacker |http://abrah.am|http://twitter.com/abraham
  Project |http://fireeagle.labs.poseurtech.com
  This email is: [ ] blogable [x] ask first [ ] private.


[twitter-dev] Re: Streaming API -- Code Change Required: follow parameter delimiter

2009-07-07 Thread Cary Knoop

A prelude to perhaps allowing searching for phrases at a later time?

Certainly something that many would find useful and would effectively
limit the stream sent over the wires.  For instance, at this time, if
I would want to capture the phrase Joe Jackson I have to search for
the keyword Jackson and then filter out a very large number of
statuses containing Michael Jackson.

Cary


[twitter-dev] Spamming via addition of trending words to tweets

2009-07-07 Thread Jeffrey Greenberg

So i'm seeing a ton of tweet spam that appends the trending topics to
the tweet.  For example, Hey here is my http://spam/1234 Michael
Jackson MJ iran

They get picked up by searches ( for instance see the search stock
market at http://www.tweettronics.com  )

What is Twitter doing or planning on doing to deal with this?  It has
been noted elsewhere that any tweet with 3 or more trending topics is
likely to be spam... Will Twiitter institute an automated spam
rejection through the API let alone through it's other interfaces?

I suppose we've entered the era of dealing with Twitter spam with all
our apps... ugh

Please advise

jeffrey greenberg
http://www.jeffrey-greenberg.com
http://www.tweettronics.com


[twitter-dev] Re: Spamming via addition of trending words to tweets

2009-07-07 Thread Alex Payne
Anyone can send a Direct Message to @spam with the username of a potential
spammer. We factor those reports into our automated spam detection tools.
We're well aware of the issue, and we appreciate the help.

On Tue, Jul 7, 2009 at 15:41, Jeffrey Greenberg
jeffreygreenb...@gmail.comwrote:


 So i'm seeing a ton of tweet spam that appends the trending topics to
 the tweet.  For example, Hey here is my http://spam/1234 Michael
 Jackson MJ iran

 They get picked up by searches ( for instance see the search stock
 market at http://www.tweettronics.com  )

 What is Twitter doing or planning on doing to deal with this?  It has
 been noted elsewhere that any tweet with 3 or more trending topics is
 likely to be spam... Will Twiitter institute an automated spam
 rejection through the API let alone through it's other interfaces?

 I suppose we've entered the era of dealing with Twitter spam with all
 our apps... ugh

 Please advise

 jeffrey greenberg
 http://www.jeffrey-greenberg.com
 http://www.tweettronics.com




-- 
Alex Payne - Platform Lead, Twitter, Inc.
http://twitter.com/al3x


[twitter-dev] Re: Spamming via addition of trending words to tweets

2009-07-07 Thread Peter Denton
Also, you could filer this out on your side. If you have the trending topics
on hand, you could write the same rule to eradicate spammy posts.

On Tue, Jul 7, 2009 at 3:41 PM, Jeffrey Greenberg 
jeffreygreenb...@gmail.com wrote:


 So i'm seeing a ton of tweet spam that appends the trending topics to
 the tweet.  For example, Hey here is my http://spam/1234 Michael
 Jackson MJ iran

 They get picked up by searches ( for instance see the search stock
 market at http://www.tweettronics.com  )

 What is Twitter doing or planning on doing to deal with this?  It has
 been noted elsewhere that any tweet with 3 or more trending topics is
 likely to be spam... Will Twiitter institute an automated spam
 rejection through the API let alone through it's other interfaces?

 I suppose we've entered the era of dealing with Twitter spam with all
 our apps... ugh

 Please advise

 jeffrey greenberg
 http://www.jeffrey-greenberg.com
 http://www.tweettronics.com


[twitter-dev] Re: Spamming via addition of trending words to tweets

2009-07-07 Thread Jeffrey Greenberg

Alex, so you're saying that we ought to auto-report spamming that we
detect.

And I guess we have to formulate some spam detection strategies of our
own...

And obviously you're dealing with spam of different kinds already:
@spamming, follower spamming to name two of em... but can you speak to
this particular one which screws up search results?  Does Twitter do
spam detection on tweets?  I guess you should be somewhat secretive on
the approach so that spammers cannot workaround it easily, but can we
expect more aggressive filtering from Twitter itself or is this really
a full-blown app responsibility?

Thanks.
jeffrey

On Jul 7, 3:59 pm, Alex Payne a...@twitter.com wrote:
 Anyone can send a Direct Message to @spam with the username of a potential
 spammer. We factor those reports into our automated spam detection tools.
 We're well aware of the issue, and we appreciate the help.

 On Tue, Jul 7, 2009 at 15:41, Jeffrey Greenberg
 jeffreygreenb...@gmail.comwrote:







  So i'm seeing a ton of tweet spam that appends the trending topics to
  the tweet.  For example, Hey here is myhttp://spam/1234Michael
  Jackson MJ iran

  They get picked up by searches ( for instance see the search stock
  market athttp://www.tweettronics.com )

  What is Twitter doing or planning on doing to deal with this?  It has
  been noted elsewhere that any tweet with 3 or more trending topics is
  likely to be spam... Will Twiitter institute an automated spam
  rejection through the API let alone through it's other interfaces?

  I suppose we've entered the era of dealing with Twitter spam with all
  our apps... ugh

  Please advise

  jeffrey greenberg
 http://www.jeffrey-greenberg.com
 http://www.tweettronics.com

 --
 Alex Payne - Platform Lead, Twitter, Inc.http://twitter.com/al3x


[twitter-dev] Re: Spamming via addition of trending words to tweets

2009-07-07 Thread Zac Bowling

Is the @spam account monitored by a bot or a human?

Zac Bowling




On Tue, Jul 7, 2009 at 5:34 PM, Jeffrey
Greenbergjeffreygreenb...@gmail.com wrote:

 Alex, so you're saying that we ought to auto-report spamming that we
 detect.

 And I guess we have to formulate some spam detection strategies of our
 own...

 And obviously you're dealing with spam of different kinds already:
 @spamming, follower spamming to name two of em... but can you speak to
 this particular one which screws up search results?  Does Twitter do
 spam detection on tweets?  I guess you should be somewhat secretive on
 the approach so that spammers cannot workaround it easily, but can we
 expect more aggressive filtering from Twitter itself or is this really
 a full-blown app responsibility?

 Thanks.
 jeffrey

 On Jul 7, 3:59 pm, Alex Payne a...@twitter.com wrote:
 Anyone can send a Direct Message to @spam with the username of a potential
 spammer. We factor those reports into our automated spam detection tools.
 We're well aware of the issue, and we appreciate the help.

 On Tue, Jul 7, 2009 at 15:41, Jeffrey Greenberg
 jeffreygreenb...@gmail.comwrote:







  So i'm seeing a ton of tweet spam that appends the trending topics to
  the tweet.  For example, Hey here is myhttp://spam/1234Michael
  Jackson MJ iran

  They get picked up by searches ( for instance see the search stock
  market athttp://www.tweettronics.com )

  What is Twitter doing or planning on doing to deal with this?  It has
  been noted elsewhere that any tweet with 3 or more trending topics is
  likely to be spam... Will Twiitter institute an automated spam
  rejection through the API let alone through it's other interfaces?

  I suppose we've entered the era of dealing with Twitter spam with all
  our apps... ugh

  Please advise

  jeffrey greenberg
 http://www.jeffrey-greenberg.com
 http://www.tweettronics.com

 --
 Alex Payne - Platform Lead, Twitter, Inc.http://twitter.com/al3x


[twitter-dev] Re: Spamming via addition of trending words to tweets

2009-07-07 Thread Doug Williams
The replies and DMs sent to @spam are manually reviewed by our abuse support
staff at the moment.

Thanks,
Doug



On Tue, Jul 7, 2009 at 5:58 PM, Zac Bowling zbowl...@gmail.com wrote:


 Is the @spam account monitored by a bot or a human?

 Zac Bowling




 On Tue, Jul 7, 2009 at 5:34 PM, Jeffrey
 Greenbergjeffreygreenb...@gmail.com wrote:
 
  Alex, so you're saying that we ought to auto-report spamming that we
  detect.
 
  And I guess we have to formulate some spam detection strategies of our
  own...
 
  And obviously you're dealing with spam of different kinds already:
  @spamming, follower spamming to name two of em... but can you speak to
  this particular one which screws up search results?  Does Twitter do
  spam detection on tweets?  I guess you should be somewhat secretive on
  the approach so that spammers cannot workaround it easily, but can we
  expect more aggressive filtering from Twitter itself or is this really
  a full-blown app responsibility?
 
  Thanks.
  jeffrey
 
  On Jul 7, 3:59 pm, Alex Payne a...@twitter.com wrote:
  Anyone can send a Direct Message to @spam with the username of a
 potential
  spammer. We factor those reports into our automated spam detection
 tools.
  We're well aware of the issue, and we appreciate the help.
 
  On Tue, Jul 7, 2009 at 15:41, Jeffrey Greenberg
  jeffreygreenb...@gmail.comwrote:
 
 
 
 
 
 
 
   So i'm seeing a ton of tweet spam that appends the trending topics to
   the tweet.  For example, Hey here is myhttp://spam/1234Michael
   Jackson MJ iran
 
   They get picked up by searches ( for instance see the search stock
   market athttp://www.tweettronics.com )
 
   What is Twitter doing or planning on doing to deal with this?  It has
   been noted elsewhere that any tweet with 3 or more trending topics is
   likely to be spam... Will Twiitter institute an automated spam
   rejection through the API let alone through it's other interfaces?
 
   I suppose we've entered the era of dealing with Twitter spam with all
   our apps... ugh
 
   Please advise
 
   jeffrey greenberg
  http://www.jeffrey-greenberg.com
  http://www.tweettronics.com
 
  --
  Alex Payne - Platform Lead, Twitter, Inc.http://twitter.com/al3x



[twitter-dev] catching up with gardenhose

2009-07-07 Thread braver

We've lost gardenhose data 6/28-7/7, if anybody could share it we'd
appreciate it very much!  I'm @khrabrov, authorized for it.

Cheers,
Alexy


[twitter-dev] Re: Spamming via addition of trending words to tweets

2009-07-07 Thread Zac Bowling

Good to know before I started spamming @spam with my own log data.


Zac Bowling
http://twitter.com/zbowling



On Tue, Jul 7, 2009 at 6:05 PM, Doug Williamsd...@twitter.com wrote:
 The replies and DMs sent to @spam are manually reviewed by our abuse support
 staff at the moment.

 Thanks,
 Doug



 On Tue, Jul 7, 2009 at 5:58 PM, Zac Bowling zbowl...@gmail.com wrote:

 Is the @spam account monitored by a bot or a human?

 Zac Bowling




 On Tue, Jul 7, 2009 at 5:34 PM, Jeffrey
 Greenbergjeffreygreenb...@gmail.com wrote:
 
  Alex, so you're saying that we ought to auto-report spamming that we
  detect.
 
  And I guess we have to formulate some spam detection strategies of our
  own...
 
  And obviously you're dealing with spam of different kinds already:
  @spamming, follower spamming to name two of em... but can you speak to
  this particular one which screws up search results?  Does Twitter do
  spam detection on tweets?  I guess you should be somewhat secretive on
  the approach so that spammers cannot workaround it easily, but can we
  expect more aggressive filtering from Twitter itself or is this really
  a full-blown app responsibility?
 
  Thanks.
  jeffrey
 
  On Jul 7, 3:59 pm, Alex Payne a...@twitter.com wrote:
  Anyone can send a Direct Message to @spam with the username of a
  potential
  spammer. We factor those reports into our automated spam detection
  tools.
  We're well aware of the issue, and we appreciate the help.
 
  On Tue, Jul 7, 2009 at 15:41, Jeffrey Greenberg
  jeffreygreenb...@gmail.comwrote:
 
 
 
 
 
 
 
   So i'm seeing a ton of tweet spam that appends the trending topics to
   the tweet.  For example, Hey here is myhttp://spam/1234Michael
   Jackson MJ iran
 
   They get picked up by searches ( for instance see the search stock
   market athttp://www.tweettronics.com )
 
   What is Twitter doing or planning on doing to deal with this?  It has
   been noted elsewhere that any tweet with 3 or more trending topics is
   likely to be spam... Will Twiitter institute an automated spam
   rejection through the API let alone through it's other interfaces?
 
   I suppose we've entered the era of dealing with Twitter spam with all
   our apps... ugh
 
   Please advise
 
   jeffrey greenberg
  http://www.jeffrey-greenberg.com
  http://www.tweettronics.com
 
  --
  Alex Payne - Platform Lead, Twitter, Inc.http://twitter.com/al3x




[twitter-dev] Re: Spamming via addition of trending words to tweets

2009-07-07 Thread Terry Jones

Zac Good to know before I started spamming @spam with my own log data.

Right.

When Twitter becomes a religion, I'm sure they'll set up an account where
apps can go to confess that they're spammers.  Until then you'll have to
wait :-)

Terry


[twitter-dev] Re: Spamming via addition of trending words to tweets

2009-07-07 Thread Vinayak Joshi

abuse support - ha ha.

just imagine -

Q: What do you do?
A: I support abuses at twitter.

I am sorry this is slightly off topic but I could not resist

Cheers

On Wed, Jul 8, 2009 at 6:35 AM, Doug Williamsd...@twitter.com wrote:
 The replies and DMs sent to @spam are manually reviewed by our abuse support
 staff at the moment.

 Thanks,
 Doug



 On Tue, Jul 7, 2009 at 5:58 PM, Zac Bowling zbowl...@gmail.com wrote:

 Is the @spam account monitored by a bot or a human?

 Zac Bowling




 On Tue, Jul 7, 2009 at 5:34 PM, Jeffrey
 Greenbergjeffreygreenb...@gmail.com wrote:
 
  Alex, so you're saying that we ought to auto-report spamming that we
  detect.
 
  And I guess we have to formulate some spam detection strategies of our
  own...
 
  And obviously you're dealing with spam of different kinds already:
  @spamming, follower spamming to name two of em... but can you speak to
  this particular one which screws up search results?  Does Twitter do
  spam detection on tweets?  I guess you should be somewhat secretive on
  the approach so that spammers cannot workaround it easily, but can we
  expect more aggressive filtering from Twitter itself or is this really
  a full-blown app responsibility?
 
  Thanks.
  jeffrey
 
  On Jul 7, 3:59 pm, Alex Payne a...@twitter.com wrote:
  Anyone can send a Direct Message to @spam with the username of a
  potential
  spammer. We factor those reports into our automated spam detection
  tools.
  We're well aware of the issue, and we appreciate the help.
 
  On Tue, Jul 7, 2009 at 15:41, Jeffrey Greenberg
  jeffreygreenb...@gmail.comwrote:
 
 
 
 
 
 
 
   So i'm seeing a ton of tweet spam that appends the trending topics to
   the tweet.  For example, Hey here is myhttp://spam/1234Michael
   Jackson MJ iran
 
   They get picked up by searches ( for instance see the search stock
   market athttp://www.tweettronics.com )
 
   What is Twitter doing or planning on doing to deal with this?  It has
   been noted elsewhere that any tweet with 3 or more trending topics is
   likely to be spam... Will Twiitter institute an automated spam
   rejection through the API let alone through it's other interfaces?
 
   I suppose we've entered the era of dealing with Twitter spam with all
   our apps... ugh
 
   Please advise
 
   jeffrey greenberg
  http://www.jeffrey-greenberg.com
  http://www.tweettronics.com
 
  --
  Alex Payne - Platform Lead, Twitter, Inc.http://twitter.com/al3x




[twitter-dev] Twitter Live Event Beaming

2009-07-07 Thread Juslin Guo

Dear All,

I not sure if this is the place to ask this question. May i check does
anyone know of a full-screen application/flash app/web-apps that allow
me to beam on a projector/led screen live updates from twitter. I have
an event where we would like to let the stadium audience twitter in.

Regards
Juslin


[twitter-dev] Re: Twitter Live Event Beaming

2009-07-07 Thread Howard Siegel
Presumably you are going to use a hashtag for the tweets you want to
display.  If so, any twitter client that lets you track tweets with your
hashtag in real time would work for you.

- h

On Tue, Jul 7, 2009 at 20:25, Juslin Guo juslin...@gmail.com wrote:


 Dear All,

 I not sure if this is the place to ask this question. May i check does
 anyone know of a full-screen application/flash app/web-apps that allow
 me to beam on a projector/led screen live updates from twitter. I have
 an event where we would like to let the stadium audience twitter in.

 Regards
 Juslin



[twitter-dev] Whitelist Limits

2009-07-07 Thread whoiskb

From what I can tell, the white list limits are 20,000 calls per
hour.  I am curious if any app out there has come close to hitting
that limit yet, and if so could you provide some usage details about
your application?

I am trying to make a decision about creating a single user desktop
app vs a multi user web app.  I really want to create it as a web app,
but I am concerned about the long term viability of the white list
limit.


[twitter-dev] Re: Spamming via addition of trending words to tweets

2009-07-07 Thread Michael Paladino
I'm not sure if this will help in your scenario or not, but a couple
of third-party products have been released recently aimed at helping to
solve this problem.  One is a Firefox plugin called Clean Tweets (
http://www.blvdstatus.com/clean-tweets.html) that works directly with the
search results in the browser.  The second is a product that I've
been working on called TidyTweet (http://tidytweet.com/) that will let you
set up a search phrase and numerous filtering options including blocking
tweets with multiple trending topics. Once the feed is setup, you get an
RSS/ATOM feed or HTML/Javascript widget for embedding on your site.

Sorry for the blatant plug, but it seems like it might prove helpful in this
case.  We're currently in private beta testing, but should be able to
accomodate a few more requests.

Thanks.
Michael Paladino
http://tidytweet.com


On Tue, Jul 7, 2009 at 5:41 PM, Jeffrey Greenberg 
jeffreygreenb...@gmail.com wrote:


 So i'm seeing a ton of tweet spam that appends the trending topics to
 the tweet.  For example, Hey here is my http://spam/1234 Michael
 Jackson MJ iran

 They get picked up by searches ( for instance see the search stock
 market at http://www.tweettronics.com  )

 What is Twitter doing or planning on doing to deal with this?  It has
 been noted elsewhere that any tweet with 3 or more trending topics is
 likely to be spam... Will Twiitter institute an automated spam
 rejection through the API let alone through it's other interfaces?

 I suppose we've entered the era of dealing with Twitter spam with all
 our apps... ugh

 Please advise

 jeffrey greenberg
 http://www.jeffrey-greenberg.com
 http://www.tweettronics.com


[twitter-dev] Re: Twitter Live Event Beaming

2009-07-07 Thread Michael Paladino
http://visibletweets.com provides pretty impressive visualization of tweets
based on a search phrase.

Michael Paladino
http://tidytweet.com



On Tue, Jul 7, 2009 at 10:25 PM, Juslin Guo juslin...@gmail.com wrote:


 Dear All,

 I not sure if this is the place to ask this question. May i check does
 anyone know of a full-screen application/flash app/web-apps that allow
 me to beam on a projector/led screen live updates from twitter. I have
 an event where we would like to let the stadium audience twitter in.

 Regards
 Juslin



[twitter-dev] Re: Twitter Live Event Beaming

2009-07-07 Thread Christopher St John

On Tue, Jul 7, 2009 at 10:25 PM, Juslin Guojuslin...@gmail.com wrote:

 I not sure if this is the place to ask this question. May i check does
 anyone know of a full-screen application/flash app/web-apps that allow
 me to beam on a projector/led screen live updates from twitter. I have
 an event where we would like to let the stadium audience twitter in.


I'm not affiliated, but these guys are part of the developer community
here in Dallas:

  http://ParaTweet.com/

If you've ever been at a conference with a backchannel projected
behind a panel, you know how, uhh, unpredictable the audience
can be, so Para Tweet allows moderation.

-cks

-- 
Christopher St. John
http://praxisbridge.com