[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

[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

[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

[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

[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

[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

[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

[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

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

[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

[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

[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

[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

[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

[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

[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

[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

[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

[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

[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

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

[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

[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

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

[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

[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

[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

[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

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

[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

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

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

[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

[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

[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

[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

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

[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

[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

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

[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

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

[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

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

[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

[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