[twitter-dev] Re: Is the rate limiting on IP or User a/c

2009-07-16 Thread victor castleton

Hello All, can anybody tell how  to stop me  unwanted mail from coming, I am
getting hundreds of mails and I cannot find the way to stop them. Thanks VJC

-Original Message-
From: twitter-development-talk@googlegroups.com
[mailto:twitter-development-t...@googlegroups.com] On Behalf Of LEE
Sent: Wednesday, July 15, 2009 11:56 PM
To: Twitter Development Talk
Subject: [twitter-dev] Is the rate limiting on IP or User a/c


Hi All,

I would like to ask, the default rate limit for calls to the REST API
is 150 requests per hour, is the rate limiting on IP (client) or on
User A/C? I have a web application to get the friend's status. I
didn't a testing to on this web application, using an A/C ABC to
keep on getting the friend's status. It ran about 70++ time to got the
result successfully, after that twitter returned exceed rate limiting.
Then i tried to use another A/C DEF to continue to get the friend's
status, but twitter returned exceed rate limiting. Guys, do you have
any idea on this rate limiting is on IP or A/C?

Thanks and Regards,




[twitter-dev] Avatar returning the same large file for mini, normal, bigger

2009-07-16 Thread TCI

... which is evidently slowing down pages that download these images
and then scale them to their small size. Is it some kind of image
reduction bug?

Example:
http://s3.amazonaws.com/twitter_production/profile_images/109775456/huevo_mini.PNG
http://s3.amazonaws.com/twitter_production/profile_images/109775456/huevo_bigger.PNG
http://s3.amazonaws.com/twitter_production/profile_images/109775456/huevo_normal.PNG

These are the avatar for user @hu3vo0

R


[twitter-dev] Re: Is the rate limiting on IP or User a/c

2009-07-16 Thread Chris Thomson


Victor, email twitter-development-talk+unsubscr...@googlegroups.com to  
unsubscribe.


--
Chris Thomson

On 2009-07-16, at 2:15 AM, victor castleton vcastle...@optonline.net  
wrote:




Hello All, can anybody tell how  to stop me  unwanted mail from  
coming, I am
getting hundreds of mails and I cannot find the way to stop them.  
Thanks VJC


[twitter-dev] There's a problem with the profile.

2009-07-16 Thread DJXpander

Hi, I don't know where to put this so I wanted to post it here, I been
having some problems with my profile, I took a screen shot of it to
understand my problem:

http://i30.tinypic.com/drclya.jpg

As you can see the following list is not right. Is there a way to fix
this?


[twitter-dev] Re: There's a problem with the profile.

2009-07-16 Thread Joel Strellner

Twitter caches the profile pics that you circled.  It will catch up, as long
as the other 4 that aren't shown aren't suspended, spammers, etc.

-Joel

-Original Message-
From: twitter-development-talk@googlegroups.com
[mailto:twitter-development-t...@googlegroups.com] On Behalf Of DJXpander
Sent: Wednesday, July 15, 2009 9:04 PM
To: Twitter Development Talk
Subject: [twitter-dev] There's a problem with the profile.


Hi, I don't know where to put this so I wanted to post it here, I been
having some problems with my profile, I took a screen shot of it to
understand my problem:

http://i30.tinypic.com/drclya.jpg

As you can see the following list is not right. Is there a way to fix
this?



[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: Unhandled ioError:. text=Error #2032: Stream Error. URL:
http://twitter.com/statuses/friends_timeline/shanebond1982.xml
at main1shad_fla::Symbol3_24/loadTwitterXML()
at main1shad_fla::Symbol3_24/main1shad_fla::frame2()

pls someone help me in this

and thanks


[twitter-dev] Re: twitter developer marketplace

2009-07-16 Thread Andrew Badera
Seems relatively simple. Didn't get the @ message for confirmation that I
think it told me to expect however?


[twitter-dev] Question on example code

2009-07-16 Thread BarefootSanders

Hi all.  I've been working on a twitter app using the new OAuth
protocol and the example code provided by twitter (This is the code:
http://github.com/abraham/twitteroauth).  I'm sure some of you have
seen/used it before.  I had a question and was hoping someone could
help me out.

What I'm noticing is that when a twitter object is created, i.e.

$to = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION
['oauth_access_token'], $_SESSION['oauth_access_token_secret']);

The method OAuthRequest is called to actually perform the request from
the Twitter api.  However when I look in the TwitterOAuth class there
is no method named OAuthRequest.  There is a method named oAuthRequest
(notice the change in case and I thought PHP was case sensitive) and
I'm trying to figure out what function is actually being called.  It
seems like oAuthRequest is being called because the params match up
but idk.

What I'm trying to do with this is actually make an unauthenticated
request for api calls that dont need to be authenticated i.e.
http://twitter.com/users/show.xml?screen_name=dougw

So I changed the constructor to this.

if ($_SESSION['oauth_access_token'] === NULL  $_SESSION
['oauth_access_token_secret'] === NULL) {
  /* Create TwitterOAuth object with app key/secret and token key/
secret from default phase */
  $to = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION
['oauth_request_token'], $_SESSION['oauth_request_token_secret']);
  /* Request access tokens from twitter */
  $tok = $to-getAccessToken();

  /* Save the access tokens. Normally these would be saved in a
database for future use. */
  $_SESSION['oauth_access_token'] = $tok['oauth_token'];
  $_SESSION['oauth_access_token_secret'] = $tok
['oauth_token_secret'];
}

And want to do this:
$to = new TwitterOAuth();
$result = $to-OAuthRequest($url);

print_r($result);

But it's not working and I cant figure out what function is being
called.

Hope I didn't ramble to long.. Any help would be much appreciated.


[twitter-dev] Re: Question on example code

2009-07-16 Thread Abraham Williams
If you are trying to make unauthenticated calls  don't bother running them
through OAuth. Just call them directly using curl.

Abraham

On Thu, Jul 16, 2009 at 07:39, BarefootSanders mgold...@gmail.com wrote:


 Hi all.  I've been working on a twitter app using the new OAuth
 protocol and the example code provided by twitter (This is the code:
 http://github.com/abraham/twitteroauth).  I'm sure some of you have
 seen/used it before.  I had a question and was hoping someone could
 help me out.

 What I'm noticing is that when a twitter object is created, i.e.

 $to = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION
 ['oauth_access_token'], $_SESSION['oauth_access_token_secret']);

 The method OAuthRequest is called to actually perform the request from
 the Twitter api.  However when I look in the TwitterOAuth class there
 is no method named OAuthRequest.  There is a method named oAuthRequest
 (notice the change in case and I thought PHP was case sensitive) and
 I'm trying to figure out what function is actually being called.  It
 seems like oAuthRequest is being called because the params match up
 but idk.

 What I'm trying to do with this is actually make an unauthenticated
 request for api calls that dont need to be authenticated i.e.
 http://twitter.com/users/show.xml?screen_name=dougw

 So I changed the constructor to this.

 if ($_SESSION['oauth_access_token'] === NULL  $_SESSION
 ['oauth_access_token_secret'] === NULL) {
  /* Create TwitterOAuth object with app key/secret and token key/
 secret from default phase */
  $to = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION
 ['oauth_request_token'], $_SESSION['oauth_request_token_secret']);
  /* Request access tokens from twitter */
  $tok = $to-getAccessToken();

  /* Save the access tokens. Normally these would be saved in a
 database for future use. */
  $_SESSION['oauth_access_token'] = $tok['oauth_token'];
  $_SESSION['oauth_access_token_secret'] = $tok
 ['oauth_token_secret'];
}

 And want to do this:
 $to = new TwitterOAuth();
 $result = $to-OAuthRequest($url);

 print_r($result);

 But it's not working and I cant figure out what function is being
 called.

 Hope I didn't ramble to long.. Any help would be much appreciated.




-- 
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: Question on example code

2009-07-16 Thread BarefootSanders

Should have included this - The underlying code uses curl so thats why
i was trying to use the methods that were there already.

On Jul 16, 8:51 am, Abraham Williams 4bra...@gmail.com wrote:
 If you are trying to make unauthenticated calls  don't bother running them
 through OAuth. Just call them directly using curl.

 Abraham





 On Thu, Jul 16, 2009 at 07:39, BarefootSanders mgold...@gmail.com wrote:

  Hi all.  I've been working on a twitter app using the new OAuth
  protocol and the example code provided by twitter (This is the code:
 http://github.com/abraham/twitteroauth).  I'm sure some of you have
  seen/used it before.  I had a question and was hoping someone could
  help me out.

  What I'm noticing is that when a twitter object is created, i.e.

  $to = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION
  ['oauth_access_token'], $_SESSION['oauth_access_token_secret']);

  The method OAuthRequest is called to actually perform the request from
  the Twitter api.  However when I look in the TwitterOAuth class there
  is no method named OAuthRequest.  There is a method named oAuthRequest
  (notice the change in case and I thought PHP was case sensitive) and
  I'm trying to figure out what function is actually being called.  It
  seems like oAuthRequest is being called because the params match up
  but idk.

  What I'm trying to do with this is actually make an unauthenticated
  request for api calls that dont need to be authenticated i.e.
 http://twitter.com/users/show.xml?screen_name=dougw

  So I changed the constructor to this.

  if ($_SESSION['oauth_access_token'] === NULL  $_SESSION
  ['oauth_access_token_secret'] === NULL) {
       /* Create TwitterOAuth object with app key/secret and token key/
  secret from default phase */
       $to = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION
  ['oauth_request_token'], $_SESSION['oauth_request_token_secret']);
       /* Request access tokens from twitter */
       $tok = $to-getAccessToken();

       /* Save the access tokens. Normally these would be saved in a
  database for future use. */
       $_SESSION['oauth_access_token'] = $tok['oauth_token'];
       $_SESSION['oauth_access_token_secret'] = $tok
  ['oauth_token_secret'];
     }

  And want to do this:
  $to = new TwitterOAuth();
  $result = $to-OAuthRequest($url);

  print_r($result);

  But it's not working and I cant figure out what function is being
  called.

  Hope I didn't ramble to long.. Any help would be much appreciated.

 --
 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] Re: Question on example code

2009-07-16 Thread BarefootSanders

Yea I was going to do that but I had the class made there already..
The call It's not actually running through OAuth.. it just creates the
object so it can use the methods already written.  I was trying to use
what was there already.

On Jul 16, 8:51 am, Abraham Williams 4bra...@gmail.com wrote:
 If you are trying to make unauthenticated calls  don't bother running them
 through OAuth. Just call them directly using curl.

 Abraham





 On Thu, Jul 16, 2009 at 07:39, BarefootSanders mgold...@gmail.com wrote:

  Hi all.  I've been working on a twitter app using the new OAuth
  protocol and the example code provided by twitter (This is the code:
 http://github.com/abraham/twitteroauth).  I'm sure some of you have
  seen/used it before.  I had a question and was hoping someone could
  help me out.

  What I'm noticing is that when a twitter object is created, i.e.

  $to = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION
  ['oauth_access_token'], $_SESSION['oauth_access_token_secret']);

  The method OAuthRequest is called to actually perform the request from
  the Twitter api.  However when I look in the TwitterOAuth class there
  is no method named OAuthRequest.  There is a method named oAuthRequest
  (notice the change in case and I thought PHP was case sensitive) and
  I'm trying to figure out what function is actually being called.  It
  seems like oAuthRequest is being called because the params match up
  but idk.

  What I'm trying to do with this is actually make an unauthenticated
  request for api calls that dont need to be authenticated i.e.
 http://twitter.com/users/show.xml?screen_name=dougw

  So I changed the constructor to this.

  if ($_SESSION['oauth_access_token'] === NULL  $_SESSION
  ['oauth_access_token_secret'] === NULL) {
       /* Create TwitterOAuth object with app key/secret and token key/
  secret from default phase */
       $to = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION
  ['oauth_request_token'], $_SESSION['oauth_request_token_secret']);
       /* Request access tokens from twitter */
       $tok = $to-getAccessToken();

       /* Save the access tokens. Normally these would be saved in a
  database for future use. */
       $_SESSION['oauth_access_token'] = $tok['oauth_token'];
       $_SESSION['oauth_access_token_secret'] = $tok
  ['oauth_token_secret'];
     }

  And want to do this:
  $to = new TwitterOAuth();
  $result = $to-OAuthRequest($url);

  print_r($result);

  But it's not working and I cant figure out what function is being
  called.

  Hope I didn't ramble to long.. Any help would be much appreciated.

 --
 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] Re: Question on example code

2009-07-16 Thread Abraham Williams
The problem though is that OAuthRequest() makes a signed OAuth request that
I'm sure Twitter does not know how to handle.

You can probably however use http() instead as that is just a curl wrapper.

Abraham

On Thu, Jul 16, 2009 at 08:10, BarefootSanders mgold...@gmail.com wrote:


 Yea I was going to do that but I had the class made there already..
 The call It's not actually running through OAuth.. it just creates the
 object so it can use the methods already written.  I was trying to use
 what was there already.

 On Jul 16, 8:51 am, Abraham Williams 4bra...@gmail.com wrote:
  If you are trying to make unauthenticated calls  don't bother running
 them
  through OAuth. Just call them directly using curl.
 
  Abraham
 
 
 
 
 
  On Thu, Jul 16, 2009 at 07:39, BarefootSanders mgold...@gmail.com
 wrote:
 
   Hi all.  I've been working on a twitter app using the new OAuth
   protocol and the example code provided by twitter (This is the code:
  http://github.com/abraham/twitteroauth).  I'm sure some of you have
   seen/used it before.  I had a question and was hoping someone could
   help me out.
 
   What I'm noticing is that when a twitter object is created, i.e.
 
   $to = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION
   ['oauth_access_token'], $_SESSION['oauth_access_token_secret']);
 
   The method OAuthRequest is called to actually perform the request from
   the Twitter api.  However when I look in the TwitterOAuth class there
   is no method named OAuthRequest.  There is a method named oAuthRequest
   (notice the change in case and I thought PHP was case sensitive) and
   I'm trying to figure out what function is actually being called.  It
   seems like oAuthRequest is being called because the params match up
   but idk.
 
   What I'm trying to do with this is actually make an unauthenticated
   request for api calls that dont need to be authenticated i.e.
  http://twitter.com/users/show.xml?screen_name=dougw
 
   So I changed the constructor to this.
 
   if ($_SESSION['oauth_access_token'] === NULL  $_SESSION
   ['oauth_access_token_secret'] === NULL) {
/* Create TwitterOAuth object with app key/secret and token key/
   secret from default phase */
$to = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION
   ['oauth_request_token'], $_SESSION['oauth_request_token_secret']);
/* Request access tokens from twitter */
$tok = $to-getAccessToken();
 
/* Save the access tokens. Normally these would be saved in a
   database for future use. */
$_SESSION['oauth_access_token'] = $tok['oauth_token'];
$_SESSION['oauth_access_token_secret'] = $tok
   ['oauth_token_secret'];
  }
 
   And want to do this:
   $to = new TwitterOAuth();
   $result = $to-OAuthRequest($url);
 
   print_r($result);
 
   But it's not working and I cant figure out what function is being
   called.
 
   Hope I didn't ramble to long.. Any help would be much appreciated.
 
  --
  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 -




-- 
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: to send messages or tweets to twitter is that possible

2009-07-16 Thread nite21

i am the user nite21 i want to post a tweet hi im new here in my flash
textfield and it shd be send to my twitter updates
and it would be shown in twitter updates

is it possible

On Jul 13, 8:50 pm, Grant Emsley grant.ems...@gmail.com wrote:
 http://apiwiki.twitter.com/Libraries

 The very first category is for flash...

 On Jul 13, 2:56 am, nite21 shanebond1...@gmail.com wrote:

  hi all
  i want tosenddatafrom flash totwitter
  is that possible

  thanks


[twitter-dev] unsubscribe

2009-07-16 Thread victor castleton
I would like to unsubscribe.Thanks



[twitter-dev] unsubscribe

2009-07-16 Thread victor castleton
I am getting hundreds of unwanted mail. I would like to unsubscribe. Thanks



[twitter-dev] Re: Is the rate limiting on IP or User a/c

2009-07-16 Thread Matt Sanford


And I did one better, I manually unsubscribed you from the management  
interface.


— Matt

On Jul 15, 2009, at 11:27 PM, Chris Thomson wrote:



Victor, email twitter-development-talk+unsubscr...@googlegroups.com  
to unsubscribe.


--
Chris Thomson

On 2009-07-16, at 2:15 AM, victor castleton  
vcastle...@optonline.net wrote:




Hello All, can anybody tell how  to stop me  unwanted mail from  
coming, I am
getting hundreds of mails and I cannot find the way to stop them.  
Thanks VJC




[twitter-dev] Re: unsubscribe

2009-07-16 Thread Clint Shryock
Victor-go here: http://groups.google.com/group/twitter-development-talk
on the right click edit my membership
on that next page, you can select to receive no email, as well as an
unsubscribe link in the bottom right

+Clint

On Thu, Jul 16, 2009 at 9:25 AM, victor castleton
vcastle...@optonline.netwrote:

  I am getting hundreds of unwanted mail. I would like to unsubscribe.
 Thanks



[twitter-dev] Re: Rules About Making Money

2009-07-16 Thread MakeMoney

Doug,  Thank you, very helpful.  I emailed you @ the twitter support
email address via the link you posted for me.  I basically outlined
the plan for you to give you an idea what I am looking to do.  I
emailed you from my personal email account and used your name in the
subject line.

Thanks

On Jul 15, 4:54 pm, Doug Williams d...@twitter.com wrote:
 There have never been any conversations internally about shutting down
 services for competitive reasons. That would contradict our ethos of
 an open API and work against the fostering of a healthy ecosystem. The
 majority of our conversations center around how to stabilize the
 developer-base and ensure that our plans further the abilities of
 developers to innovate.

 The only services that we proactively work to restrict are those which
 increase spam and abuse. Even then, we reach out and attempt to work
 with the developer before taking any action.

 If you have specific questions about your project, I'd be happy to
 take them off thread for privacy [1].

 1.http://apiwiki.twitter.com/Support

 Thanks,
 Doug

 On Wed, Jul 15, 2009 at 2:34 PM, MakeMoneychicagolocalde...@gmail.com wrote:

  Thanks,  This was very helpful.  I do not use any sort of bots or
  anything like that, and only people that wish to follow me follow me.
  I would like to streamline my services though for nationwide offerings
  and just wanted to make sure that I would invest in this and then have
  it shut off.

  Brian


[twitter-dev] Re: Is the rate limiting on IP or User a/c

2009-07-16 Thread jmathai

GET calls are IP based (yours, not the client's) and count against the
rate limit generally mentioned.

On Jul 15, 8:56 pm, LEE engho@gmail.com wrote:
 Hi All,

 I would like to ask, the default rate limit for calls to the REST API
 is 150 requests per hour, is the rate limiting on IP (client) or on
 User A/C? I have a web application to get the friend's status. I
 didn't a testing to on this web application, using an A/C ABC to
 keep on getting the friend's status. It ran about 70++ time to got the
 result successfully, after that twitter returned exceed rate limiting.
 Then i tried to use another A/C DEF to continue to get the friend's
 status, but twitter returned exceed rate limiting. Guys, do you have
 any idea on this rate limiting is on IP or A/C?

 Thanks and Regards,


[twitter-dev] Re: Question on example code

2009-07-16 Thread BarefootSanders

It's strange but the http() method doesn't seem to be working.  Here
is my code:

$url = 'http://twitter.com/users/show.xml?screen_name=dougw';
$to = new TwitterOAuth();
$result = $to-http($url);
print_r($result);

And that doesn't print anything out.  Am I doing something wrong?

Thanks.

On Jul 16, 9:34 am, Abraham Williams 4bra...@gmail.com wrote:
 The problem though is that OAuthRequest() makes a signed OAuth request that
 I'm sure Twitter does not know how to handle.

 You can probably however use http() instead as that is just a curl wrapper.

 Abraham





 On Thu, Jul 16, 2009 at 08:10, BarefootSanders mgold...@gmail.com wrote:

  Yea I was going to do that but I had the class made there already..
  The call It's not actually running through OAuth.. it just creates the
  object so it can use the methods already written.  I was trying to use
  what was there already.

  On Jul 16, 8:51 am, Abraham Williams 4bra...@gmail.com wrote:
   If you are trying to make unauthenticated calls  don't bother running
  them
   through OAuth. Just call them directly using curl.

   Abraham

   On Thu, Jul 16, 2009 at 07:39, BarefootSanders mgold...@gmail.com
  wrote:

Hi all.  I've been working on a twitter app using the new OAuth
protocol and the example code provided by twitter (This is the code:
   http://github.com/abraham/twitteroauth).  I'm sure some of you have
seen/used it before.  I had a question and was hoping someone could
help me out.

What I'm noticing is that when a twitter object is created, i.e.

$to = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION
['oauth_access_token'], $_SESSION['oauth_access_token_secret']);

The method OAuthRequest is called to actually perform the request from
the Twitter api.  However when I look in the TwitterOAuth class there
is no method named OAuthRequest.  There is a method named oAuthRequest
(notice the change in case and I thought PHP was case sensitive) and
I'm trying to figure out what function is actually being called.  It
seems like oAuthRequest is being called because the params match up
but idk.

What I'm trying to do with this is actually make an unauthenticated
request for api calls that dont need to be authenticated i.e.
   http://twitter.com/users/show.xml?screen_name=dougw

So I changed the constructor to this.

if ($_SESSION['oauth_access_token'] === NULL  $_SESSION
['oauth_access_token_secret'] === NULL) {
     /* Create TwitterOAuth object with app key/secret and token key/
secret from default phase */
     $to = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION
['oauth_request_token'], $_SESSION['oauth_request_token_secret']);
     /* Request access tokens from twitter */
     $tok = $to-getAccessToken();

     /* Save the access tokens. Normally these would be saved in a
database for future use. */
     $_SESSION['oauth_access_token'] = $tok['oauth_token'];
     $_SESSION['oauth_access_token_secret'] = $tok
['oauth_token_secret'];
   }

And want to do this:
$to = new TwitterOAuth();
$result = $to-OAuthRequest($url);

print_r($result);

But it's not working and I cant figure out what function is being
called.

Hope I didn't ramble to long.. Any help would be much appreciated.

   --
   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 -

 --
 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] Re: Question on example code

2009-07-16 Thread BarefootSanders

And I'm still a bit confused.. what method is being called when this
is called:

$to-OAuthRequest()

There is no method that matches the name/case of that method anywhere.

On Jul 16, 9:34 am, Abraham Williams 4bra...@gmail.com wrote:
 The problem though is that OAuthRequest() makes a signed OAuth request that
 I'm sure Twitter does not know how to handle.

 You can probably however use http() instead as that is just a curl wrapper.

 Abraham





 On Thu, Jul 16, 2009 at 08:10, BarefootSanders mgold...@gmail.com wrote:

  Yea I was going to do that but I had the class made there already..
  The call It's not actually running through OAuth.. it just creates the
  object so it can use the methods already written.  I was trying to use
  what was there already.

  On Jul 16, 8:51 am, Abraham Williams 4bra...@gmail.com wrote:
   If you are trying to make unauthenticated calls  don't bother running
  them
   through OAuth. Just call them directly using curl.

   Abraham

   On Thu, Jul 16, 2009 at 07:39, BarefootSanders mgold...@gmail.com
  wrote:

Hi all.  I've been working on a twitter app using the new OAuth
protocol and the example code provided by twitter (This is the code:
   http://github.com/abraham/twitteroauth).  I'm sure some of you have
seen/used it before.  I had a question and was hoping someone could
help me out.

What I'm noticing is that when a twitter object is created, i.e.

$to = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION
['oauth_access_token'], $_SESSION['oauth_access_token_secret']);

The method OAuthRequest is called to actually perform the request from
the Twitter api.  However when I look in the TwitterOAuth class there
is no method named OAuthRequest.  There is a method named oAuthRequest
(notice the change in case and I thought PHP was case sensitive) and
I'm trying to figure out what function is actually being called.  It
seems like oAuthRequest is being called because the params match up
but idk.

What I'm trying to do with this is actually make an unauthenticated
request for api calls that dont need to be authenticated i.e.
   http://twitter.com/users/show.xml?screen_name=dougw

So I changed the constructor to this.

if ($_SESSION['oauth_access_token'] === NULL  $_SESSION
['oauth_access_token_secret'] === NULL) {
     /* Create TwitterOAuth object with app key/secret and token key/
secret from default phase */
     $to = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION
['oauth_request_token'], $_SESSION['oauth_request_token_secret']);
     /* Request access tokens from twitter */
     $tok = $to-getAccessToken();

     /* Save the access tokens. Normally these would be saved in a
database for future use. */
     $_SESSION['oauth_access_token'] = $tok['oauth_token'];
     $_SESSION['oauth_access_token_secret'] = $tok
['oauth_token_secret'];
   }

And want to do this:
$to = new TwitterOAuth();
$result = $to-OAuthRequest($url);

print_r($result);

But it's not working and I cant figure out what function is being
called.

Hope I didn't ramble to long.. Any help would be much appreciated.

   --
   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 -

 --
 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] Re: direct messaging limits and best practices for individual services?

2009-07-16 Thread Andrew Badera
On Thu, Jul 16, 2009 at 11:32 AM, jmathai jmat...@gmail.com wrote:


 If you're sending DMs then you should be limited to 1000 DMs / user /
 day or 100 / user / hour.  I run into the limit issue as well but for
 a game that seems ample, no?

 DMs won't count against your IP address, they count against the user.
 Also, you could request whitelisting.



And the whitelisted DM limit is what, 20k/day? But is that then by user, or
by app IP?


[twitter-dev] Re: Does Rate Limiting Apply to Users or Clients?

2009-07-16 Thread Doug Williams
Agreed. I will massage the copy today. Of course I'm assuming people read
the documentation but it is at least a start.

Again, if you have suggestions, please email a...@twitter.com.

Thanks,
Doug


On Thu, Jul 16, 2009 at 7:37 AM, Matt Sanford m...@twitter.com wrote:


 Hi Lee,

The rate limit is per-account for authenticated requests, and per-IP
 address for non-authenticated requests. If you (or anyone) has suggestions
 on how to make the documentation [1] clearer I'm all for it; please email
 a...@twitter.com with your suggestions. This seems to be a common point of
 confusion.

 Thanks;
  – Matt Sanford / @mzsanford
 Twitter Dev

 [1] - http://apiwiki.twitter.com/Rate-limiting


 On Jul 15, 2009, at 9:13 PM, LEE wrote:


 If i have 2 accounts abc and efg, then i use a httpclient (java)
 as a client to get the friend's status from a web application (which
 use the Twitter4j), then how do this rate limiting for these 2
 accounts abc and efg? each account has 150 requests? The how about
 the web applicaiton only have 150 requests can be sent?

 Thanks'

 Lee



 On Jul 7, 9:16 am, Abraham Williams 4bra...@gmail.com wrote:

 Each account has 150 requests / hr. If that that account is being used
 from
 several clients all of the hits will count against the 150.

 Abraham

 On Mon, Jul 6, 2009 at 19:54, devstudent andrey...@gmail.com wrote:

  If a person uses 2 clients. Can each client make 150 requests / hr, or
 does the 150 limit apply to both clients?


 --
 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: Avatar returning the same large file for mini, normal, bigger

2009-07-16 Thread Doug Williams
That looks like the result from a rather old bug (which has been closed)
that allowed images to upload without resizing.

Thanks,
Doug


On Wed, Jul 15, 2009 at 11:22 PM, TCI ticoconid...@gmail.com wrote:


 ... which is evidently slowing down pages that download these images
 and then scale them to their small size. Is it some kind of image
 reduction bug?

 Example:

 http://s3.amazonaws.com/twitter_production/profile_images/109775456/huevo_mini.PNG

 http://s3.amazonaws.com/twitter_production/profile_images/109775456/huevo_bigger.PNG

 http://s3.amazonaws.com/twitter_production/profile_images/109775456/huevo_normal.PNG

 These are the avatar for user @hu3vo0

 R



[twitter-dev] Re: direct messaging limits and best practices for individual services?

2009-07-16 Thread Bjoern

On Jul 16, 5:32 pm, jmathai jmat...@gmail.com wrote:
 If you're sending DMs then you should be limited to 1000 DMs / user /
 day or 100 / user / hour.  I run into the limit issue as well but for
 a game that seems ample, no?

I gathered from this link that the limit for dm's is 250, not 1000:
http://help.twitter.com/forums/10711/entries/15364

With 1000 I would feel a bit safer, 250 would maybe suffice for about
70 games.

Björn


[twitter-dev] search.json pagination returning duplicates

2009-07-16 Thread Zac Witte

I'm paginating through a search query that was initially created with
a since_id parameter. I'm using the query suggested by next_page,
which includes a max_id and not a since_id, which I believe is the
correct usage. I'm still getting duplicate tweets. Is anyone else
experiencing this?


[twitter-dev] Keep getting suspended

2009-07-16 Thread sjespers

This is now the second day in a row that I get suspended because I am
working on my Twitter application.
1) I am whitelisted as a developer
2) The IP from the server I am working from is whitelisted

What more can I do to be able to continue to work?

Thanks,
Serge


[twitter-dev] Re: Keep getting suspended

2009-07-16 Thread Peter Denton
What is your application doing?

On Thu, Jul 16, 2009 at 12:13 PM, sjespers se...@webkitchen.be wrote:


 This is now the second day in a row that I get suspended because I am
 working on my Twitter application.
 1) I am whitelisted as a developer
 2) The IP from the server I am working from is whitelisted

 What more can I do to be able to continue to work?

 Thanks,
 Serge



[twitter-dev] Re: Keep getting suspended

2009-07-16 Thread sjespers

Nothing special. It's a simple mobile Twitter app. Because I'm using
Flash Lite I use my server as a proxy between the app and the Twitter
API.

On Jul 16, 9:16 pm, Peter Denton petermden...@gmail.com wrote:
 What is your application doing?



 On Thu, Jul 16, 2009 at 12:13 PM, sjespers se...@webkitchen.be wrote:

  This is now the second day in a row that I get suspended because I am
  working on my Twitter application.
  1) I am whitelisted as a developer
  2) The IP from the server I am working from is whitelisted

  What more can I do to be able to continue to work?

  Thanks,
  Serge


[twitter-dev] Twitter is not making money

2009-07-16 Thread Michael Yardley

They are just running on Venture Capital.When the money runs out they
will have to start chraging.You cannot run a business for FREE.People
should have to pay to Twitter.So much a Tweet. LOL


[twitter-dev] Re: Twitter is not making money

2009-07-16 Thread Peter Denton
OMG, I had no idea. Are you the Kroll guy?

On Thu, Jul 16, 2009 at 12:26 PM, Michael Yardley middleto...@gmail.comwrote:


 They are just running on Venture Capital.When the money runs out they
 will have to start chraging.You cannot run a business for FREE.People
 should have to pay to Twitter.So much a Tweet. LOL


[twitter-dev] Re: Twitter is not making money

2009-07-16 Thread Nick Arnett
On Thu, Jul 16, 2009 at 12:26 PM, Michael Yardley middleto...@gmail.comwrote:


 They are just running on Venture Capital.When the money runs out they
 will have to start chraging.You cannot run a business for FREE.People
 should have to pay to Twitter.So much a Tweet. LOL


Yeah, just like Google started charging us per search when they ran out of
money.

Nick


[twitter-dev] Re: Twitter is not making money

2009-07-16 Thread Dale Merritt
charge per API query?  Oopps

On Thu, Jul 16, 2009 at 12:45 PM, Nick Arnett nick.arn...@gmail.com wrote:



  On Thu, Jul 16, 2009 at 12:26 PM, Michael Yardley 
 middleto...@gmail.comwrote:


 They are just running on Venture Capital.When the money runs out they
 will have to start chraging.You cannot run a business for FREE.People
 should have to pay to Twitter.So much a Tweet. LOL


 Yeah, just like Google started charging us per search when they ran out of
 money.

 Nick



[twitter-dev] Social media developer groups?

2009-07-16 Thread Nick Arnett
Anybody here know of any organized social media developer groups, more than
just a forum or mailing list?
I did some searching and didn't come up with much of anything.

I'm wondering where developers would be likely to meet other developers,
network, etc., outside of application or platform-specific communities.

Thanks for any pointers.

Nick


[twitter-dev] Re: Social media developer groups?

2009-07-16 Thread JDG
have you tried business-oriented social networking sites like LinkedIn? It
has a bazillion groups and I'd be shocked if there weren't a social
computing-oriented group.

On Thu, Jul 16, 2009 at 13:50, Nick Arnett nick.arn...@gmail.com wrote:

 Anybody here know of any organized social media developer groups, more than
 just a forum or mailing list?
 I did some searching and didn't come up with much of anything.

 I'm wondering where developers would be likely to meet other developers,
 network, etc., outside of application or platform-specific communities.

 Thanks for any pointers.

 Nick




-- 
Internets. Serious business.


[twitter-dev] Re: Social media developer groups?

2009-07-16 Thread Nick Arnett
On Thu, Jul 16, 2009 at 12:52 PM, JDG ghil...@gmail.com wrote:

 have you tried business-oriented social networking sites like LinkedIn? It
 has a bazillion groups and I'd be shocked if there weren't a social
 computing-oriented group.


Well, I'm really thinking more of something beyond just a web-based group -
meetups and such.  But there might be some such things loosely organized via
LinkedIn or similar.  Maybe that sort of loosely organized group is just
what the Internet is good for...

Nick


[twitter-dev] Re: search.json pagination returning duplicates

2009-07-16 Thread Matt Sanford


Hi Zac,

   The response should also include a warning message that since_id  
was removed. When you paginate we have to remove the since_id so  
you'll need to keep track of the since_id and stop paginating when you  
reach it.


Thanks;
 – Matt Sanford / @mzsanford
 Twitter Dev

On Jul 16, 2009, at 11:23 AM, Zac Witte wrote:



I'm paginating through a search query that was initially created with
a since_id parameter. I'm using the query suggested by next_page,
which includes a max_id and not a since_id, which I believe is the
correct usage. I'm still getting duplicate tweets. Is anyone else
experiencing this?




[twitter-dev] Re: Twitter is not making money

2009-07-16 Thread Stuart

2009/7/16 Michael Yardley middleto...@gmail.com:

 They are just running on Venture Capital.When the money runs out they
 will have to start chraging.You cannot run a business for FREE.People
 should have to pay to Twitter.So much a Tweet. LOL

You really need to do some research before trolling like this.

Twitter have a business plan, we're just not worthy enough to know all
the details. What we know so far is that they're planning to launch a
premium account type with a bunch of tools to aid brand and engagement
tracking. If Twitter can maintain their popularity big business will
pay a small fortune to be able to measure the effectiveness of the way
they're using their accounts.

In fact depending on how it's priced it's possible they won't need
many companies to pay for a premium account before they start making
an operating profit.

They, as well as most of the rest of the world, know that if they
started charging for all accounts they would quickly die and be
replaced by someone else trying to do it for free.

You're correct to say that free as a business model cannot work, but
there are thousands of examples out there of companies running a free
service that's supported by paid options. Google is the prime example
here, but it works for small companies too - 37signals is a huge
proponent of offering a free option alongside paid accounts and it's
worked very well for them.

Having said all that I would be very wary about building a company
solely based upon Twitter. While I don't think they're going anywhere
there's nothing stopping them implementing anything that you or I
could build and they'd quickly eat away at any market share we'd built
up. We've already seen a few examples of this over at Facebook.

I'm not saying I'd expect them to do something like that, but it's
possible and worth bearing in mind. A more likely scenario is that
they'd buy a company providing a particular service and integrate it
fully into the main product. If you're a competitor of that company
then you'd experience the same effects as if Twitter had built it
themselves.

Diversity is the key to survival when the environment you're operating
in changes as fast as the internet.

Anyway, those are my thoughts, do with them what you will.

-Stuart

-- 
http://stut.net/projects/twitter/


[twitter-dev] Re: Twitter is not making money

2009-07-16 Thread Nick Arnett
On Thu, Jul 16, 2009 at 1:14 PM, Stuart stut...@gmail.com wrote:


 Twitter have a business plan, we're just not worthy enough to know all
 the details. What we know so far is that they're planning to launch a
 premium account type with a bunch of tools to aid brand and engagement
 tracking. If Twitter can maintain their popularity big business will
 pay a small fortune to be able to measure the effectiveness of the way
 they're using their accounts.


At the risk of really deviating from developer talk... We know this?  Who's
we and how do we know this?

I have a hard time seeing how analysis of Twitter alone would compete with
existing services that monitor brands in conversations across many
platforms.  I started one of the first companies to do that, ten years ago,
which is quite a head start... and it is now owned by one of the biggest
brand monitoring companies on the planet.  Lots of competition has come
along since then.

Anyway, this was fun, but it's not about developing code as such, so I'll
shut up.  Maybe this is a conversation for that non-platform-specific social
media developer community I was wondering about... ;-)

Nick


[twitter-dev] Re: Twitter is not making money

2009-07-16 Thread Andrew Badera
On Thu, Jul 16, 2009 at 4:26 PM, Nick Arnett nick.arn...@gmail.com wrote:



 On Thu, Jul 16, 2009 at 1:14 PM, Stuart stut...@gmail.com wrote:


 Twitter have a business plan, we're just not worthy enough to know all
 the details. What we know so far is that they're planning to launch a
 premium account type with a bunch of tools to aid brand and engagement
 tracking. If Twitter can maintain their popularity big business will
 pay a small fortune to be able to measure the effectiveness of the way
 they're using their accounts.


 At the risk of really deviating from developer talk... We know this?  Who's
 we and how do we know this?

 I have a hard time seeing how analysis of Twitter alone would compete with
 existing services that monitor brands in conversations across many
 platforms.  I started one of the first companies to do that, ten years ago,
 which is quite a head start... and it is now owned by one of the biggest
 brand monitoring companies on the planet.  Lots of competition has come
 along since then.

 Anyway, this was fun, but it's not about developing code as such, so I'll
 shut up.  Maybe this is a conversation for that non-platform-specific social
 media developer community I was wondering about... ;-)

 Nick


We is anyone who have paid attention to the twitter dev list and blogs and
scuttlebutt. Biz has talked about the premium accounts. Contextual
advertising has been brought up several times. Search-driven monetization
has also been brought up.

Who's we? Anyone with their eyes and ears open.


Thanks-
- Andy Badera
- and...@badera.us
- Google me: http://www.google.com/search?q=andrew+badera
- This email is: [ ] bloggable [x] ask first [ ] private


[twitter-dev] force load of standard twitter site? (rather than mobile)

2009-07-16 Thread Brian Williammee

Ok, I've done my homework, really.  I get that you can't let
m.twitter.com do pre-populated status updates.  Clickjacking, you
say.  Mobile browsers won't process your special javascript-busting,
you say.  I've read all of these threads that say so.

http://groups.google.com/group/twitter-development-talk/browse_thread/thread/6a5f2194b03778b5/4917d80e49787def?lnk=gstq=mobile#4917d80e49787def
http://groups.google.com/group/twitter-development-talk/browse_thread/thread/7865e894d94161e7/ae9f1cb1fbf272f9?lnk=gstq=mobile#ae9f1cb1fbf272f9
http://groups.google.com/group/twitter-development-talk/browse_thread/thread/c1bd0818e0e8f7b0/e11ea235e961c75e?lnk=gstq=mobile#e11ea235e961c75e
http://groups.google.com/group/twitter-development-talk/browse_thread/thread/ea702e91df11dfd/fe71e005e7427039?lnk=gstq=mobile#fe71e005e7427039

What about just letting us specify that we want to load the standard
page?  Is that possible?  Or could you make it so?  It's possible to
send an iPhone user to twitter, which loads the mobile site, and then
if that user clicks for the standard view, the pre-populated status is
present.  Is that really any different, security-wise, than visiting
the standard page (with pre-populated text) in the first place?

Thanks,
Brian Williammee


[twitter-dev] API Developers Alliance

2009-07-16 Thread Peter Denton
There is a lot of ambiguity up in the air, about api devs (third party) and
the future of the api and twitter. Apps are a huge growth vehicle and a very
significant piece of the future, getting the Twitter medium a global
behavior.

I believe there should be a formal alliance of third party developers to
ensure that Apps have rights. The ambiguity around down the road, if and
when scenarios, leave many investors weary, teams unformed, and products
unbuilt because at the end of the day, people have to consider a massive
acquisition or change where suddenly apps are crushed by the parent. Twitter
is not facebook and potential for sustainable/profitable products and
services around this medium are real. If you don't agree, that's fine. I am
seeking those who believe this and want to address this.

This is not meant to be a big, serious thing. This is meant to be an action
item to those who want a developer bill of rights to happen, with
input/voice from an organized approach, and want to create some level of
insurance, to go out to investors/partners with an approach.

If anyone would like to discuss this, please let me know off the list. I am
not trying to irritate people, just gauge people's interest.

Regards
Peter


[twitter-dev] Re: search.json pagination returning duplicates

2009-07-16 Thread Zac Witte

Ah, sure, that makes sense. Thanks.

On Jul 16, 3:06 pm, Matt Sanford m...@twitter.com wrote:
 Hi Zac,

     The response should also include a warning message that since_id  
 was removed. When you paginate we have to remove the since_id so  
 you'll need to keep track of the since_id and stop paginating when you  
 reach it.

 Thanks;
   – Matt Sanford / @mzsanford
       Twitter Dev

 On Jul 16, 2009, at 11:23 AM, Zac Witte wrote:





  I'm paginating through a search query that was initially created with
  a since_id parameter. I'm using the query suggested by next_page,
  which includes a max_id and not a since_id, which I believe is the
  correct usage. I'm still getting duplicate tweets. Is anyone else
  experiencing this?


[twitter-dev] Re: API Developers Alliance

2009-07-16 Thread Joel Strellner
Not sure that there needs to be formal alliance, but a working group that
has the ear of twitter and can make sure needs are being met from both the
developers and Twitters perspective would be good.

 

On that same note though, I feel that twitter has done a pretty good job
with this balance so far, and I do not feel that they'd do anything to
hinder developers.  As much as twitter is about being a communications tool,
it is also a platform.  I think they realizes this, and hindering the
developers kills the platform.

 

So, while an alliance might be helpful, personally, I also do not see it
changing anything much. 

 

-Joel

 

 

From: twitter-development-talk@googlegroups.com
[mailto:twitter-development-t...@googlegroups.com] On Behalf Of Peter Denton
Sent: Thursday, July 16, 2009 2:35 PM
To: twitter-development-talk@googlegroups.com
Subject: [twitter-dev] API Developers Alliance

 

There is a lot of ambiguity up in the air, about api devs (third party) and
the future of the api and twitter. Apps are a huge growth vehicle and a very
significant piece of the future, getting the Twitter medium a global
behavior. 

I believe there should be a formal alliance of third party developers to
ensure that Apps have rights. The ambiguity around down the road, if and
when scenarios, leave many investors weary, teams unformed, and products
unbuilt because at the end of the day, people have to consider a massive
acquisition or change where suddenly apps are crushed by the parent. Twitter
is not facebook and potential for sustainable/profitable products and
services around this medium are real. If you don't agree, that's fine. I am
seeking those who believe this and want to address this.

This is not meant to be a big, serious thing. This is meant to be an action
item to those who want a developer bill of rights to happen, with
input/voice from an organized approach, and want to create some level of
insurance, to go out to investors/partners with an approach.

If anyone would like to discuss this, please let me know off the list. I am
not trying to irritate people, just gauge people's interest.

Regards
Peter 


 



[twitter-dev] Re: API Curl: Status update result: http_code =0!

2009-07-16 Thread lda

I have same issue...

with curl_setopt($ch, CURLOPT_POST, 1);

i get this

* About to connect() to twitter.com port 80 (#0)
*   Trying 168.143.162.100... * connected
* Connected to twitter.com (168.143.162.100) port 80 (#0)
* Server auth using Basic with user 'x'
 POST 
 /statuses/update.xml?status=http%3A%2F%2Flocalhost%2Fent_umgebung%2Findex.php%3Foption%3Dcom_content%26view%3Darticle%26id%3D99+adasd
  HTTP/1.1

Authorization: Basic x
Host: twitter.com

Accept: */*

Content-Length: 0

Content-Type: application/x-www-form-urlencoded



* Closing connection #0
* Failed to open/read local data from file/application

but the tweet shows up at twitter.com

---
with curl_setopt($ch, CURLOPT_POST, 0);

i get this

* About to connect() to twitter.com port 80 (#0)
*   Trying 168.143.162.116... * connected
* Connected to twitter.com (168.143.162.116) port 80 (#0)
* Server auth using Basic with user 'xxx'
 GET 
 /statuses/update.xml?status=http%3A%2F%2Flocalhost%2Fent_umgebung%2Findex.php%3Foption%3Dcom_content%26view%3Darticle%26id%3D100+asdsd
  HTTP/1.1

Authorization: Basic 
Host: twitter.com

Accept: */*



 HTTP/1.1 400 Bad Request

 Date: Thu, 16 Jul 2009 22:19:04 GMT

 Server: hi

 Last-Modified: Thu, 16 Jul 2009 22:19:04 GMT

 Status: 400 Bad Request

 X-RateLimit-Limit: 150

 X-RateLimit-Remaining: 148

 Pragma: no-cache

 Cache-Control: no-cache, no-store, must-revalidate, pre-check=0,
post-check=0

 Content-Type: application/xml; charset=utf-8

 X-RateLimit-Reset: 1247783018

 Content-Length: 256

 Expires: Tue, 31 Mar 1981 05:00:00 GMT

 X-Revision: f4f87122b27713088b558c6b57aad4f73e83a56d

 X-Transaction: 1247782744-54919-16662

 Set-Cookie: lang=en; path=/

 Set-Cookie:
_twitter_sess=BAh7CToTcGFzc3dvcmRfdG9rZW4iLWI3YmU3OTRiMDVjNzRkNmYwMWU5NmVk
%250AOTc0ZWFjY2M4Y2MzNjliOWY6CXVzZXJpBCwYXwM6B2lkIiViZWQxNTkzMWZm
%250AMjFiYWZlZWIwYjI3NmZmM2VlOGNmOCIKZmxhc2hJQzonQWN0aW9uQ29udHJv
%250AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%253D
%253D--833c18afbc67a08e2c62ee0e278ac6eafb304123; domain=.twitter.com;
path=/

 Vary: Accept-Encoding

 Connection: close



* Closing connection #0

and the twitter dont show up at twitter.com



[twitter-dev] Re: Failed update doesn't return an error message?

2009-07-16 Thread Martin Omander

Hi again,

I just wanted to let everyone know that this problem does not occur
today. When I go over the API limit, I'm getting status code 403 back.
Yesterday I got status code 200 (OK) back, which made things hard.
This fix really helps us developers. Thank you, Twitters!

/Martin



On Jul 14, 5:05 pm, Doug Williams d...@twitter.com wrote:
 Sounds like we have all we need. Thanks for the help, Martin. I'll add
 a link to this thread to the bug report for posterity.

 Thanks,
 Doug



 On Tue, Jul 14, 2009 at 4:40 PM, Martin Omandermoman...@google.com wrote:

  Doug,

  Thanks for your prompt reply.

  Yes, it does sound like issue 795. I am sending a new, non-duplicate,
  update. My app just ran into the rate limit again. I verified by
  trying to post an update on twitter.com and got the message Wow,
  that's a lot of Twittering! You have reached your limit
  of updates for the hour. Try again later.

  While my account (@martins_test) was in this state, I sent this:

  curl -u username:password -d 
  status=testinghttp://twitter.com/statuses/update.xml
  -D headerfile

  The XML response contained the text of the last successful status
  update. The HTTP headers started with

  HTTP/1.1 200 OK

  In other words, this is the same problem I ran into yesterday. Is
  there any other data that would help troubleshoot this?

  All the best,

  /Martin

  On Jul 13, 5:52 pm, Doug Williams d...@twitter.com wrote:
  Martin,
  This sounds like issue 795 [1].

  When you get the 200, are you sending the same (duplicate) text as the last
  successful update? If so, this is the expected behavior.

  However, if you are sending new (non duplicate) text and you are hitting 
  the
  update limit, you should be receiving a HTTP 403 response code.

  Can you specify exactly what you are doing so we can debug?

  1.http://code.google.com/p/twitter-api/issues/detail?id=795

  Thanks,
  Doug

  On Mon, Jul 13, 2009 at 4:38 PM, Martin Omander moman...@google.com 
  wrote:

   Hi there,

   Earlier today I ran afoul of the rate limit for updates through the
   API. But no error was returned to my app. To make sure my app wasn't
   suppressing the error message, I sent an update using curl:

   curl -u username:password -d status=testing
  http://twitter.com/statuses/update.xml
   -D headerfile

   The status wasn't updated and no error message was returned. The
   headerfile contained HTTP return code 200. But when I tried to enter
   an update for the same account through the web interface at
   twitter.com, I got an error message saying that I had posted too many
   updates in the last hour.

   When I used the curl command above and the update failed, I did notice
   that the returned text element did not contain the status text I had
   sent. Instead it contained my last successful update from 30 minutes
   earlier. When there is a successful update, the text element seems
   to contain the status update I just sent.

   Should I examine the text element to verify that the update worked,
   instead of checking for HTTP error codes? Or was this just a temporary
   glitch today?

   All the best,

   /Martin


[twitter-dev] Re: API Developers Alliance

2009-07-16 Thread Peter Denton
Yes, agree with you 100%. I hope my mail did not come across overly
Orwellian. Twitter is awesome and I have never experienced as warm a
relationship with any large entity as with twitter.
My intentions are to provide a place for API developers to discuss long term
goals, concerns, as an entity of the twitter medium. Being able to express
needs/fears to twitter in an organized manner will help everyone involved
and reduce friction and increase transparency.

On Thu, Jul 16, 2009 at 2:52 PM, Joel Strellner j...@twitturly.com wrote:

  Not sure that there needs to be formal alliance, but a working group that
 has the ear of twitter and can make sure needs are being met from both the
 developers and Twitters perspective would be good.



 On that same note though, I feel that twitter has done a pretty good job
 with this balance so far, and I do not feel that they’d do anything to
 hinder developers.  As much as twitter is about being a communications tool,
 it is also a platform.  I think they realizes this, and hindering the
 developers kills the platform.



 So, while an alliance might be helpful, personally, I also do not see it
 changing anything much.



 -Joel





 *From:* twitter-development-talk@googlegroups.com [mailto:
 twitter-development-t...@googlegroups.com] *On Behalf Of *Peter Denton
 *Sent:* Thursday, July 16, 2009 2:35 PM
 *To:* twitter-development-talk@googlegroups.com
 *Subject:* [twitter-dev] API Developers Alliance



 There is a lot of ambiguity up in the air, about api devs (third party) and
 the future of the api and twitter. Apps are a huge growth vehicle and a very
 significant piece of the future, getting the Twitter medium a global
 behavior.

 I believe there should be a formal alliance of third party developers to
 ensure that Apps have rights. The ambiguity around down the road, if and
 when scenarios, leave many investors weary, teams unformed, and products
 unbuilt because at the end of the day, people have to consider a massive
 acquisition or change where suddenly apps are crushed by the parent. Twitter
 is not facebook and potential for sustainable/profitable products and
 services around this medium are real. If you don't agree, that's fine. I am
 seeking those who believe this and want to address this.

 This is not meant to be a big, serious thing. This is meant to be an action
 item to those who want a developer bill of rights to happen, with
 input/voice from an organized approach, and want to create some level of
 insurance, to go out to investors/partners with an approach.

 If anyone would like to discuss this, please let me know off the list. I am
 not trying to irritate people, just gauge people's interest.

 Regards
 Peter







-- 
Peter M. Denton
www.twibs.com
i...@twibs.com

Twibs makes Top 20 apps on Twitter - http://tinyurl.com/bopu6c


[twitter-dev] Re: Twitter is not making money

2009-07-16 Thread David Fisher

Don't feed the trolls. Name a Venture backed startup that DOESNT run
on VC for the first few years. Ok? Right. Stupid topic. Lets move on
and talk about things that matter (ie. development)

On Jul 16, 4:34 pm, Andrew Badera and...@badera.us wrote:
 On Thu, Jul 16, 2009 at 4:26 PM, Nick Arnett nick.arn...@gmail.com wrote:

  On Thu, Jul 16, 2009 at 1:14 PM, Stuart stut...@gmail.com wrote:

  Twitter have a business plan, we're just not worthy enough to know all
  the details. What we know so far is that they're planning to launch a
  premium account type with a bunch of tools to aid brand and engagement
  tracking. If Twitter can maintain their popularity big business will
  pay a small fortune to be able to measure the effectiveness of the way
  they're using their accounts.

  At the risk of really deviating from developer talk... We know this?  Who's
  we and how do we know this?

  I have a hard time seeing how analysis of Twitter alone would compete with
  existing services that monitor brands in conversations across many
  platforms.  I started one of the first companies to do that, ten years ago,
  which is quite a head start... and it is now owned by one of the biggest
  brand monitoring companies on the planet.  Lots of competition has come
  along since then.

  Anyway, this was fun, but it's not about developing code as such, so I'll
  shut up.  Maybe this is a conversation for that non-platform-specific social
  media developer community I was wondering about... ;-)

  Nick

 We is anyone who have paid attention to the twitter dev list and blogs and
 scuttlebutt. Biz has talked about the premium accounts. Contextual
 advertising has been brought up several times. Search-driven monetization
 has also been brought up.

 Who's we? Anyone with their eyes and ears open.

 Thanks-
 - Andy Badera
 - and...@badera.us
 - Google me:http://www.google.com/search?q=andrew+badera
 - This email is: [ ] bloggable [x] ask first [ ] private


[twitter-dev] All updates for a user

2009-07-16 Thread JohnieStafford

Is there a way, via the API, to download every update you've sent?


[twitter-dev] Re: All updates for a user

2009-07-16 Thread Doug Williams
You can page through a user_timeline [1], up to the last 3200 tweets [2].

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


On Thu, Jul 16, 2009 at 4:50 PM, JohnieStafford
johnie.staff...@gmail.comwrote:


 Is there a way, via the API, to download every update you've sent?



[twitter-dev] Re: API Limits

2009-07-16 Thread Martin Omander


It is odd that my app is held to a rate limit that is hidden from me.
When I call the rate limit API, I get the rate for my IP address,
which is meaningless when it comes to status updates.

My only option is to keep sending status updates until I get a 403
error message back. I hope that won't earn me a blacklisting :-)

Cheers,

/Martin



On Jul 15, 8:36 am, Bill Kocik bko...@gmail.com wrote:
 On Jul 15, 11:22 am, iUpdateStatus iupdatesta...@gmail.com wrote:

  As a general question related to this topic: For all the developers
  who are working on a solution that involves authenticated users, would
  it be more convenient to get removed from the whitelist (or never
  apply for it) and use the authenticated user's 150 requests/hour
  limit?

 For me, yes. When the user rate limit was 100, as few as 200
 simultaneous users have, collectively, the same rate limit as a
 whitelisted IP. Now that the limit is 150, it only takes 133.3
 simultaneous users.

 If you anticipate having about 130 or more simultaneous users,
 whitelisting can work against you, but it's not completely black and
 white. If I have 50 really active users and 100 that aren't so active,
 whitelisting might be in my favor, because it means I can spend more
 requests on each of those 50 users than their 150/hr limit would
 otherwise allow.

 It really depends on how many simultaneous authenticated users you
 expect to have, what kind of users they are, and what kind of API
 requests your application is making on their behalf. For my
 application, whitelisting doesn't make sense. For yours it might.


[twitter-dev] Direct Message Limit for a Game we are creating what playspymaster does

2009-07-16 Thread Abir

Hey Guys:

We are creating a game on Twitter.  Can people tell me about the # of
direct messages that you are allowed to send, is it 500?  How does
@playspymaster do it though since they say 
http://playspymaster.com/notifications
they direct message people a lot.

How can we create a good game, yet stay compliant with Twitter and
keep them happy...thoughts?  thanks


[twitter-dev] Re: API Developers Alliance

2009-07-16 Thread Abir

Peter:

In my experience, the folks @Twitter have been extremely responsive
both on this forum+via email, and I thought this group was supposed to
be doing that?

Abir

On Jul 16, 3:36 pm, Joel Strellner j...@twitturly.com wrote:
 Why can't we keep using this list for that purpose?  It has worked well so
 far.

 -Joel

 From: twitter-development-talk@googlegroups.com
 [mailto:twitter-development-t...@googlegroups.com] On Behalf Of Peter Denton
 Sent: Thursday, July 16, 2009 3:34 PM
 To: twitter-development-talk@googlegroups.com
 Subject: [twitter-dev] Re: API Developers Alliance

 Yes, agree with you 100%. I hope my mail did not come across overly
 Orwellian. Twitter is awesome and I have never experienced as warm a
 relationship with any large entity as with twitter.
 My intentions are to provide a place for API developers to discuss long term
 goals, concerns, as an entity of the twitter medium. Being able to express
 needs/fears to twitter in an organized manner will help everyone involved
 and reduce friction and increase transparency.

 On Thu, Jul 16, 2009 at 2:52 PM, Joel Strellner j...@twitturly.com wrote:

 Not sure that there needs to be formal alliance, but a working group that
 has the ear of twitter and can make sure needs are being met from both the
 developers and Twitters perspective would be good.

 On that same note though, I feel that twitter has done a pretty good job
 with this balance so far, and I do not feel that they'd do anything to
 hinder developers.  As much as twitter is about being a communications tool,
 it is also a platform.  I think they realizes this, and hindering the
 developers kills the platform.

 So, while an alliance might be helpful, personally, I also do not see it
 changing anything much.

 -Joel

 From: twitter-development-talk@googlegroups.com
 [mailto:twitter-development-t...@googlegroups.com] On Behalf Of Peter Denton
 Sent: Thursday, July 16, 2009 2:35 PM
 To: twitter-development-talk@googlegroups.com
 Subject: [twitter-dev] API Developers Alliance

 There is a lot of ambiguity up in the air, about api devs (third party) and
 the future of the api and twitter. Apps are a huge growth vehicle and a very
 significant piece of the future, getting the Twitter medium a global
 behavior.

 I believe there should be a formal alliance of third party developers to
 ensure that Apps have rights. The ambiguity around down the road, if and
 when scenarios, leave many investors weary, teams unformed, and products
 unbuilt because at the end of the day, people have to consider a massive
 acquisition or change where suddenly apps are crushed by the parent. Twitter
 is not facebook and potential for sustainable/profitable products and
 services around this medium are real. If you don't agree, that's fine. I am
 seeking those who believe this and want to address this.

 This is not meant to be a big, serious thing. This is meant to be an action
 item to those who want a developer bill of rights to happen, with
 input/voice from an organized approach, and want to create some level of
 insurance, to go out to investors/partners with an approach.

 If anyone would like to discuss this, please let me know off the list. I am
 not trying to irritate people, just gauge people's interest.

 Regards
 Peter

 --
 Peter M. Dentonwww.twibs.com
 i...@twibs.com

 Twibs makes Top 20 apps on Twitter -http://tinyurl.com/bopu6c


[twitter-dev] Re: number of search results for query

2009-07-16 Thread John Kalucki

Hit the Search API several times per hour and extrapolate results
given the average time between the 100 statuses returned. Or, use the
track resource in the Streaming API to do the same. There are
technical advantages and disadvantages to each approach, but the
result will be roughly the same.

An approximation is all you'll get from any approach, as there is no
totally unfiltered source of statuses -- for example, protected users'
statuses are unavailable, how do you account for deleted statuses,
etc. etc., so you are always estimating.

-John Kalucki
twitter.com/jkalucki
Services, Twitter Inc.



On Jul 16, 7:27 pm, mclovin hanoo...@gmail.com wrote:
 Hey all,

 Basically I wish to get the total number of tweets that contain a word
 each day. In the JSON or Atom they dont give the total amount of hits
 that the query returns. I was wondering if there was a way to do this
 w/o simply taking in the entire twitter stream and and manually
 counting. Perhaps another twitter search engine or something?


[twitter-dev] Re: API Developers Alliance

2009-07-16 Thread Peter Denton
Yes, I think my email was wrongly presented and as a result, misinterpreted.

I was hoping to spearhead an attempt to compose the developers Bill of
Rights that has been floating around. This was intended as a way to help
twitter platform team and present a draft from the developers
ideas/concerns, and possibly further identify hurdles to business models,
etc. I will continue to communicate with those interested off the list and
anyone who is interested in contributing can email me. I also want to keep
brainstorming with people on how to unify the development community.

nuff said.

Regards
Peter


On Thu, Jul 16, 2009 at 7:21 PM, Abir abstar...@gmail.com wrote:


 Peter:

 In my experience, the folks @Twitter have been extremely responsive
 both on this forum+via email, and I thought this group was supposed to
 be doing that?

 Abir

 On Jul 16, 3:36 pm, Joel Strellner j...@twitturly.com wrote:
  Why can't we keep using this list for that purpose?  It has worked well
 so
  far.
 
  -Joel
 
  From: twitter-development-talk@googlegroups.com
  [mailto:twitter-development-t...@googlegroups.com] On Behalf Of Peter
 Denton
  Sent: Thursday, July 16, 2009 3:34 PM
  To: twitter-development-talk@googlegroups.com
  Subject: [twitter-dev] Re: API Developers Alliance
 
  Yes, agree with you 100%. I hope my mail did not come across overly
  Orwellian. Twitter is awesome and I have never experienced as warm a
  relationship with any large entity as with twitter.
  My intentions are to provide a place for API developers to discuss long
 term
  goals, concerns, as an entity of the twitter medium. Being able to
 express
  needs/fears to twitter in an organized manner will help everyone involved
  and reduce friction and increase transparency.
 
  On Thu, Jul 16, 2009 at 2:52 PM, Joel Strellner j...@twitturly.com
 wrote:
 
  Not sure that there needs to be formal alliance, but a working group that
  has the ear of twitter and can make sure needs are being met from both
 the
  developers and Twitters perspective would be good.
 
  On that same note though, I feel that twitter has done a pretty good job
  with this balance so far, and I do not feel that they'd do anything to
  hinder developers.  As much as twitter is about being a communications
 tool,
  it is also a platform.  I think they realizes this, and hindering the
  developers kills the platform.
 
  So, while an alliance might be helpful, personally, I also do not see it
  changing anything much.
 
  -Joel
 
  From: twitter-development-talk@googlegroups.com
  [mailto:twitter-development-t...@googlegroups.com] On Behalf Of Peter
 Denton
  Sent: Thursday, July 16, 2009 2:35 PM
  To: twitter-development-talk@googlegroups.com
  Subject: [twitter-dev] API Developers Alliance
 
  There is a lot of ambiguity up in the air, about api devs (third party)
 and
  the future of the api and twitter. Apps are a huge growth vehicle and a
 very
  significant piece of the future, getting the Twitter medium a global
  behavior.
 
  I believe there should be a formal alliance of third party developers to
  ensure that Apps have rights. The ambiguity around down the road, if and
  when scenarios, leave many investors weary, teams unformed, and products
  unbuilt because at the end of the day, people have to consider a massive
  acquisition or change where suddenly apps are crushed by the parent.
 Twitter
  is not facebook and potential for sustainable/profitable products and
  services around this medium are real. If you don't agree, that's fine. I
 am
  seeking those who believe this and want to address this.
 
  This is not meant to be a big, serious thing. This is meant to be an
 action
  item to those who want a developer bill of rights to happen, with
  input/voice from an organized approach, and want to create some level of
  insurance, to go out to investors/partners with an approach.
 
  If anyone would like to discuss this, please let me know off the list. I
 am
  not trying to irritate people, just gauge people's interest.
 
  Regards
  Peter
 
  --
  Peter M. Dentonwww.twibs.com
  i...@twibs.com
 
  Twibs makes Top 20 apps on Twitter -http://tinyurl.com/bopu6c



[twitter-dev] Re: Keep getting suspended

2009-07-16 Thread sjespers

By suspension I mean a big red square on my Twitter account with the
following message:
Account Suspended
This account is currently suspended and is being investigated due to
strange activity. If we have suspended your account mistakenly, please
let us know. See Suspended Accounts for more information.



On Jul 16, 11:24 pm, Doug Williams d...@twitter.com wrote:
 By suspension, do you mean rate limiting [1]?

 1.http://apiwiki.twitter.com/Rate-limiting

 Thanks,
 Doug



 On Thu, Jul 16, 2009 at 12:21 PM, sjespers se...@webkitchen.be wrote:

  Nothing special. It's a simple mobile Twitter app. Because I'm using
  Flash Lite I use my server as a proxy between the app and the Twitter
  API.

  On Jul 16, 9:16 pm, Peter Denton petermden...@gmail.com wrote:
   What is your application doing?

   On Thu, Jul 16, 2009 at 12:13 PM, sjespers se...@webkitchen.be wrote:

This is now the second day in a row that I get suspended because I am
working on my Twitter application.
1) I am whitelisted as a developer
2) The IP from the server I am working from is whitelisted

What more can I do to be able to continue to work?

Thanks,
Serge