[twitter-dev] Re: Mobile oAuth

2009-08-20 Thread Cameron Kaiser
I have a mobile based twitter client in the field and have implemented oAuth for this client. Some of the devices are either very low memory or have primitive browsers that dont support the rendering of the 'allow' / 'deny' access page ( http://twitter.com/oauth/authorize ). I have tried the

[twitter-dev] Re: Post status to Twitter mobile version via querystring

2009-08-20 Thread Naveen Ayyagari
A quick google search shows how to use the Embeded Safari browser to change the user-agent. If you change the user-agent to something a desktop would use, it should work for you. Realize though that this will then give the desktop presentation of the website, which may not be ideal..

[twitter-dev] Re: oAuth suggestion

2009-08-20 Thread Abraham Williams
I would recommend add these suggestions to: http://code.google.com/p/twitter-api/issues/detail?id=395 Abraham On Tue, Aug 18, 2009 at 05:46, Rich rhyl...@gmail.com wrote: Firstly I use oAuth on my iPhone app because I like the concept but there are problems with the oAuth pages using mobile

[twitter-dev] Re: Do My Customers Have a Twitter Account?

2009-08-20 Thread Andrew Badera
On Wed, Aug 19, 2009 at 11:41 PM, Dewald Pretoriusdpr...@gmail.com wrote: I fully agree with you, Duane. Dewald On Aug 20, 12:17 am, Duane Roelands duane.roela...@gmail.com wrote: This is a terrible idea. *snip* As a developer and a user, I hope Twitter -never- implements this. +

[twitter-dev] Re: C# + OAuth + account/update_profile_image = 500 Internal Server Error

2009-08-20 Thread Andrew Badera
On Thu, Aug 20, 2009 at 1:40 AM, David Carsoncarson63...@gmail.com wrote: Got this sorted out and working, and thought I should share the two pitfalls which were causing me problems. First of all, unbelievably, the 500 Internal Server Error was being caused by an extra carriage return

[twitter-dev] help retrieving tweets from other users!

2009-08-20 Thread raashid bhatt
Hi all i am developing a Desktop client of twitter for self use its actually my first time working on twitter API i want get tweets from other user for that i use user_timeline REST method but for that i can only view latest 200 tweets for that particular user and page parameter don't works

[twitter-dev] Suspended Account - Need Help!!!

2009-08-20 Thread AccountingSoftwareGuy
Hello, We just built and released an application to allow users to schedule tweets. We've also in short time built a nice little following and then all of a sudden our account was suspended a day and half ago, out of the blue, no warning even though our app has been whitelisted. Since we can't

[twitter-dev] Re: Suspended Account - Need Help!!!

2009-08-20 Thread Dewald Pretorius
It sounds as if your Twitter account has been suspended. That is not the same as having your application shut down. A shut-down app means you cannot access the API at all, i.e., all your API calls are denied with connection refused. Can you still access the API from your app and publish tweets

[twitter-dev] Re: Suspended Account - Need Help!!!

2009-08-20 Thread AccountingSoftwareGuy
No it appears that our API is shut down completely, everything we do now is returned (401) Unauthorized. We do not do anything automated other than send out tweets that our users schedule. I presume if the users scheduled a tweet with DM it would go out that way but we do not automatically do

[twitter-dev] Re: Suspended Account - Need Help!!!

2009-08-20 Thread Dewald Pretorius
On Aug 20, 9:40 am, AccountingSoftwareGuy virga.rob...@gmail.com wrote: No it appears that our API is shut down completely, everything we do now is returned (401) Unauthorized. Are you using OAuth or Basic Auth? Dewald

[twitter-dev] Re: Suspended Account - Need Help!!!

2009-08-20 Thread Adam Cloud
Dewald knows his stuff. And trust me Virga, it's not twitter's favoritism you're experiencing. It's their lack of good customer service! You're not alone, i've heard many many stories of how great they are at responding to those help tickets. Their API may be rockin it, but their customer

[twitter-dev] Re: Suspended Account - Need Help!!!

2009-08-20 Thread Dale Merritt
are you using automated software to generate direct messages through that Twitter account, on behalf of your subscribers? If so, that would definitely raise an issue On Thu, Aug 20, 2009 at 5:26 AM, Dewald Pretorius dpr...@gmail.com wrote: It sounds as if your Twitter account has been

[twitter-dev] Re: Suspended Account - Need Help!!!

2009-08-20 Thread AccountingSoftwareGuy
Oauth On Aug 20, 5:49 am, Dewald Pretorius dpr...@gmail.com wrote: On Aug 20, 9:40 am, AccountingSoftwareGuy virga.rob...@gmail.com wrote: No it appears that our API is shut down completely, everything we do now is returned (401) Unauthorized. Are you using OAuth or Basic Auth? Dewald

[twitter-dev] Re: DM Length

2009-08-20 Thread Dewald Pretorius
There is something very quirky going on with DMs. That 841-character DM that I received is now only returning 247 characters when I retrieve it via the API. Dewald

[twitter-dev] Re: Suspended Account - Need Help!!!

2009-08-20 Thread AccountingSoftwareGuy
Ok...based on Dewalds post above I did a little more investigating and it appears that our API is functioning because some tweets went out on behalf of some of our customers and I setup a new twitter account and tested without an error but what is more concerning is that it appears that Twitter

[twitter-dev] Re: Suspended Account - Need Help!!!

2009-08-20 Thread Duane Roelands
what is more concerning is that it appears that Twitter just blanketly suspended several of our accounts and our users accounts that had any tweets posted recently from our application. Is it possible that these customers of yours had their accounts suspended for activity that had nothing to do

[twitter-dev] Re: Suspended Account - Need Help!!!

2009-08-20 Thread Adam Cloud
Sometimes i really think the twitter-dev group has what it takes to be the base of a soap opera script, Or at the very least...a drama. Aren't you glad you have us for support? (i say us, excluding myself...since i only occasionally chime in for comic relief or moral support)

[twitter-dev] Re: Suspended Account - Need Help!!!

2009-08-20 Thread Dewald Pretorius
Sorry, I was thinking with Basic Auth in mind with my previous replies. Logically, OAuth should work differently. I think the idea is that you shouldn't be able to make any API calls from the app, if the Twitter account from where you registered your application is suspended. Meaning, a

[twitter-dev] Re: DM Length

2009-08-20 Thread Cameron Kaiser
There is something very quirky going on with DMs. That 841-character DM that I received is now only returning 247 characters when I retrieve it via the API. There was, historically, some difference between what's in the mem cache and what was committed to the backend store. I don't know what

[twitter-dev] Re: help retrieving tweets from other users!

2009-08-20 Thread Duane Roelands
My understanding is that 200 is the limit for retrieving status updates via the REST API. On Aug 20, 4:38 am, raashid bhatt raashidbh...@gmail.com wrote: Hi all i am developing a Desktop client of twitter for self use its actually my first time working on twitter API i want  get tweets from

[twitter-dev] Creating Groups

2009-08-20 Thread Ryan Bell
Twitter Groups: I am adding the ability to create custom 'groups' of twitter users to my site. My current approach seems very processor/ twitter api intensive. Can anyone make a recommendation or refer me to a link where I can find information on how I might more efficiently code this feature?

[twitter-dev] Re: help retrieving tweets from other users!

2009-08-20 Thread raashid bhatt
no u didnt understood me .. i know per request the limit is 200 but what about the next 200 tweets how can i get those ( of the other user) On Aug 20, 7:06 am, Duane Roelands duane.roela...@gmail.com wrote: My understanding is that 200 is the limit for retrieving status updates via the REST

[twitter-dev] Re: Creating Groups

2009-08-20 Thread Chris Babcock
On Thu, 20 Aug 2009 07:20:28 -0700 (PDT) Ryan Bell ryan.j.b...@gmail.com wrote: Twitter Groups: I am adding the ability to create custom 'groups' of twitter users to my site. My current approach seems very processor/ twitter api intensive. Can anyone make a recommendation or refer me to

[twitter-dev] Track vs. Search

2009-08-20 Thread Mark Nutter
I'm writing an application that needs a realtime stream of the links being posted on Twitter. I've been using the search api with a search for the term 'http' but I stumbled across the track firehose method which appears to offer the same functionality but with the added bonus of including the

[twitter-dev] Link at status is not displayed correctly on twitter.com

2009-08-20 Thread bombzone
Hi, i have a problem. every time i update my status via the twitter api the links are not correcty displayed on twitter.com, they look like this: New+entry+on+Wohill+-%3E+www.bit.ly www.bit.ly%2FJdhdb ... i try to update the status with encode($status) and utf8_encode ($status) ... and all

[twitter-dev] Re: Suspended Account - Need Help!!!

2009-08-20 Thread Robert Banh
Someone on a tread once said, Do you want free business advice: don't revolve you business plan around twitter. Twitter is free. I'm happy to trade small downtime/performance for something free. That's my 2-cents. - @robertbanh On Thu, Aug 20, 2009 at 9:11 AM, Duane

[twitter-dev] Re: Twitter accented char and encoding

2009-08-20 Thread bombzone
i have the same problem, did you found any solution? On 10 Aug., 16:28, Eagle1 nathan.rud...@gmail.com wrote: Hi there ! i'm trying to configure a twitter scheduled script and i having problem to send accented char ! I know that i have to encode and utf8 encode before sending, and I do it

[twitter-dev] Re: Twitter Oauth Integration

2009-08-20 Thread Duane Roelands
1. When Twitter is having issues (like the recent DDoS attacks), OAuth tends to suffer. Basic Auth appears to hold up in these situations. 2. OAuth gives you the same access to the API that Basic Auth does. 3. OAuth requires that all requests to the API be signed as per the OAuth spec, so

[twitter-dev] Search API sometimes returning random tweets mixed in?

2009-08-20 Thread Marco Kaiser
Hi, we are receiving an increasing number of reports from users about search results containing tweets that don't match the search query. It doesn't seem to be reproducable, i.e. a later request for the same query does not contain the false results. We've also seen from user reports on twitter

[twitter-dev] Re: Search API sometimes returning random tweets mixed in?

2009-08-20 Thread Amitab
I have seen the same which is affecting quality of results at Twaller.com. I have communicated this issue with the Twitter Team, you can see my post at this forum 3-4 daya back. This seems to be a very recent phenomenon. On Aug 20, 7:42 am, Marco Kaiser kaiser.ma...@gmail.com wrote: Hi, we are

[twitter-dev] Re: help retrieving tweets from other users!

2009-08-20 Thread Duane Roelands
Hm! I stand corrected! Thanks for setting me straight, Jim! On Aug 20, 12:29 pm, jim.renkel james.ren...@gmail.com wrote: Yes, the *per request* limit is 200, but using the page parameter you can retrieve up to the last 3200 status updates.

[twitter-dev] Re: Creating Groups

2009-08-20 Thread Andrew Badera
I'd recommend checking out the API documentation. ∞ Andy Badera ∞ This email is: [ ] bloggable [x] ask first [ ] private ∞ Google me: http://www.google.com/search?q=(andrew+badera)+OR+(andy+badera) On Thu, Aug 20, 2009 at 10:20 AM, Ryan Bellryan.j.b...@gmail.com wrote: Twitter Groups:  I am

[twitter-dev] Re: Creating Groups

2009-08-20 Thread Duane Roelands
Chris, I've implemented this in my client, which you are free to look at if you feel it would be helpful (http://code.google.com/p/quitter- client). I do a read of the Friends timeline, and display to the user only those tweets from members of the selected group. I do this by checking each

[twitter-dev] Re: Track vs. Search

2009-08-20 Thread Joel Strellner
No, and Yes. Track does not allow for getting that high of a number of results, you will be throttled, thus you will miss links. -Joel On Thu, Aug 20, 2009 at 7:21 AM, Mark Nutter marknut...@gmail.com wrote: I'm writing an application that needs a realtime stream of the links being posted

[twitter-dev] Re: Do My Customers Have a Twitter Account?

2009-08-20 Thread Adam Cloud
On Wed, Aug 19, 2009 at 9:17 PM, Duane Roelands duane.roela...@gmail.comwrote: This is a terrible idea. Agreed.

[twitter-dev] Re: help retrieving tweets from other users!

2009-08-20 Thread jim.renkel
Yes, the *per request* limit is 200, but using the page parameter you can retrieve up to the last 3200 status updates. See http://apiwiki.twitter.com/Things-Every-Developer-Should-Know#6Therearepaginationlimits for more information. I've implemented and tested this in my site

[twitter-dev] Re: Suspended Account - Need Help!!!

2009-08-20 Thread Adam Cloud
On Thu, Aug 20, 2009 at 8:23 AM, Robert Banh robert.b...@gmail.com wrote: Twitter is free. I'm happy to trade small downtime/performance for something free. That's my 2-cents. Amen. I thought the same thing when i saw the original posters Why isn't Twitter being consistent in their approach

[twitter-dev] Re: Suspended Account - Need Help!!!

2009-08-20 Thread Dean Collins
Yes Adam you are right - BUT if Twitter are playing favorites then they should come out and say so. Everyone knows that the Apple approval process for the App store sucks and is biased...So when Google Voice got rejected Google knew going into it that the Apple process is biased and sucks.

[twitter-dev] Search API Results Mismatches

2009-08-20 Thread Chad Etzel
Hi all, If you are experiencing search results that don't match your query, if you can please log the following information and send it to a...@twitter.com, it will help our Search team debug this problem. -Your external IP -Your user-agent -Your search query -The timestamp -The results -The

[twitter-dev] Re: Search API Results Mismatches

2009-08-20 Thread Marco Kaiser
Hi Chad, we are getting reports from the users of our desktop clients, so the user agent will either contain twhirl or Seesmic Desktop. We'll try to get the queries used from our users, but unfortunately, we'll not be able to provide any of the other information, as it all happens on users'

[twitter-dev] Update avatar by Oauth

2009-08-20 Thread hrki
Hi guys, I have a little problem with uploading avatar to twitter by oauth. I m using this libraries for communicate by oauth : http://github.com/gTwittr/gTwittr/tree/f0c27b147de5efc509ffc3db48a36f4b4cd448bb/application/lib/twitteroauth Trying to send file with this : $imageX =

[twitter-dev] Twitter Trademark in Trouble Too

2009-08-20 Thread Sam Johnston
[although somewhat more controversial I look forward to seeing the followup conversation - once again refer to the article itself for the inline links - @samj] Twitter Trademark in Trouble Too http://samj.net/2009/08/twitter-trademark-in-trouble-too.html Yesterday I apparently stuck a nerve in

[twitter-dev] Re: Twitter's Tweet Trademark Torpedoed

2009-08-20 Thread Sam Johnston
Evening all, Apologies for the lag - monitoring this group from the web interface. @David: You may well still get sued if Twitter think they have a case but I doubt it, and I doubt they'd win too. The real power they wield over developers is access to their APIs as you observe (even if the ToS

[twitter-dev] Re: help retrieving tweets from other users!

2009-08-20 Thread raashid bhatt
here getting page three from my account which ain't protected dosent work it asks for password and username http://twitter.com/statuses/user_timeline.xml?id=raashidbhatt?page=2 or http://twitter.com/statuses/user_timeline.xml?screen_name=raashidbhatt?page=2 On Aug 20, 9:29 am, jim.renkel

[twitter-dev] Twitter API allowing multiple Posters

2009-08-20 Thread BrianF
Is there a twitter client/website/code that allows someone to post to a specific Twitter account using their Twitter account. i.e. Can a bunch of stores use their twitter accounts to post to a single feed? Anyone know of anything along these lines?

[twitter-dev] Re: no SSL on http://twitter.com/login?

2009-08-20 Thread divesnob
Yup - I'm only bringing it up since you can get to that funnel through saying that you want to login via mobile and then decide to simply login normally. While not huge, it is a bit of a hole. On Aug 19, 7:51 am, Damon Clinkscales sca...@pobox.com wrote: On Wed, Aug 19, 2009 at 9:07 AM,

[twitter-dev] Re: Track vs. Search

2009-08-20 Thread Wil Kern
Have you thought about just using the filter:links in your search query? Will On Thu, Aug 20, 2009 at 10:21 AM, Mark Nutter marknut...@gmail.com wrote: I'm writing an application that needs a realtime stream of the links being posted on Twitter. I've been using the search api with a search

[twitter-dev] Is Twitter completely down at present?

2009-08-20 Thread Shannon Clark
I'm getting a 503 error no servers available to handle your requests when I just tried to load Twitter via Safari on my iPhone (and am getting authentication errors via iPhone apps). A friend in Chicago just reported the same errors to me as well. Didn't see anything on

[twitter-dev] Re: Is Twitter completely down at present?

2009-08-20 Thread Duane Roelands
All systems go here.

[twitter-dev] Re: Is Twitter completely down at present?

2009-08-20 Thread Hedley Robertson
I am getting random 500s and 503s here, both from the api and the main site. On Thu, Aug 20, 2009 at 1:12 PM, Duane Roelands duane.roela...@gmail.comwrote: All systems go here.

[twitter-dev] Re: Twitter API allowing multiple Posters

2009-08-20 Thread JDG
You mean like CoTweet? On Thu, Aug 20, 2009 at 11:58, BrianF divyde...@gmail.com wrote: Is there a twitter client/website/code that allows someone to post to a specific Twitter account using their Twitter account. i.e. Can a bunch of stores use their twitter accounts to post to a single

[twitter-dev] Developer Preview: Geolocation API

2009-08-20 Thread Ryan Sarver
We wanted to give you all a heads up on a cool new feature that is coming soon - Geolocation. The Geolocation API will give us the ability to attach geographic metadata to tweets to provide additional context with your update. Along with the option to tag updates, we will be able to search for

[twitter-dev] Re: Developer Preview: Geolocation API

2009-08-20 Thread @epc
Will twitter validate the coordinates (ie, what will the API do when I pass lat=777long=-666)? If the coordinates are invalid, will the status get posted or will the entire request get rejected with a 4xx code? If a user has not enabled geolocating (geo_enabledfalse/ geo_enabled), what happens

[twitter-dev] Re: help retrieving tweets from other users!

2009-08-20 Thread jim.renkel
raashid, Multiple parameters in the same request are separated by 's, not another ?. :-) Try these, they seem to work for me: http://twitter.com/statuses/user_timeline.xml?id=raashidbhattpage=2 or http://twitter.com/statuses/user_timeline.xml?screen_name=raashidbhattpage=2 Jim On Aug 20,

[twitter-dev] Re: Developer Preview: Geolocation API

2009-08-20 Thread Joel Strellner
Hi Ryan, Will this data be available in the streaming API too? -Joel On Thu, Aug 20, 2009 at 2:11 PM, @epc epcoste...@gmail.com wrote: Will twitter validate the coordinates (ie, what will the API do when I pass lat=777long=-666)? If the coordinates are invalid, will the status get posted

[twitter-dev] Re: Developer Preview: Geolocation API

2009-08-20 Thread @epc
Will the opt–in method be only through the twitter site or will there be an API method to turn it on/off? --

[twitter-dev] Re: Developer Preview: Geolocation API

2009-08-20 Thread jim.renkel
Um, I don't see any way for a user to turn the geo_enabled attribute on and off. Oversight, I hope? Jim On Aug 20, 4:18 pm, Joel Strellner j...@twitturly.com wrote: Hi Ryan, Will this data be available in the streaming API too? -Joel On Thu, Aug 20, 2009 at 2:11 PM, @epc

[twitter-dev] Re: Developer Preview: Geolocation API

2009-08-20 Thread Ryan Sarver
Ed, Thanks for the email, answers inline below... On Thu, Aug 20, 2009 at 2:11 PM, @epcepcoste...@gmail.com wrote: Will twitter validate the coordinates (ie, what will the API do when I pass lat=777long=-666)? If the coordinates are invalid, will the status get posted or will the entire

[twitter-dev] Re: Developer Preview: Geolocation API

2009-08-20 Thread Ryan Sarver
Joel, it will be included in the Stream API as well On Thu, Aug 20, 2009 at 2:18 PM, Joel Strellnerj...@twitturly.com wrote: Hi Ryan, Will this data be available in the streaming API too? -Joel On Thu, Aug 20, 2009 at 2:11 PM, @epc epcoste...@gmail.com wrote: Will twitter validate the

[twitter-dev] Re: Is Twitter completely down at present?

2009-08-20 Thread Dewald Pretorius
There have been random 503 outages today. Luckily each one has been of very short duration. Dewald On Aug 20, 5:16 pm, Hedley Robertson hedley.robert...@gmail.com wrote: I am getting random 500s and 503s here, both from the api and the main site. On Thu, Aug 20, 2009 at 1:12 PM, Duane

[twitter-dev] Re: Developer Preview: Geolocation API

2009-08-20 Thread Ryan Sarver
Ed, Users will need to come to the website to change the setting. If we provided an API, a misbehaving application would change the setting without the user knowing - hence the read-only attribute. Best, Ryan On Thu, Aug 20, 2009 at 2:24 PM, @epcepcoste...@gmail.com wrote: Will the opt–in

[twitter-dev] Re: Developer Preview: Geolocation API

2009-08-20 Thread Nelson Minar
Very exciting! Thanks for giving the community an early preview. GeoRSS supports altitude and accuracy measures for point locations as well. in GeoRSS-Simple, it's something like georss:point45.256 -110.45/georss:point georss:radius500/georss:radius georss:elev313/georss:elev (at that

[twitter-dev] Getting access to Birddog or Shadow

2009-08-20 Thread Lyn Headley
Hello, My company is working on a newsgathering application that needs to listen to a number of different sources at once. The scale of the application is such that each gatherer must listen to several thousand sources, and we hope to scale our application up to many different gatherers. We

[twitter-dev] Re: Developer Preview: Geolocation API

2009-08-20 Thread Andriy Ivanov
really cool! Very excited to see it! On Aug 20, 2:27 pm, jim.renkel james.ren...@gmail.com wrote: Um, I don't see any way for a user to turn the geo_enabled attribute on and off. Oversight, I hope? Jim On Aug 20, 4:18 pm, Joel Strellner j...@twitturly.com wrote: Hi Ryan, Will this

[twitter-dev] Re: Developer Preview: Geolocation API

2009-08-20 Thread mattpaul
Very cool, Ryan, Al3x et al! I'm sure I'm but one of many devs that can't wait to get our hands on this 8^) mattpaul mopimp productions On Aug 20, 1:46 pm, Ryan Sarver rsar...@twitter.com wrote: We wanted to give you all a heads up on a cool new feature that is coming soon - Geolocation.

[twitter-dev] Re: Twitter API allowing multiple Posters

2009-08-20 Thread djc8080
Don't need any app. Everyone can log into the same account at the same time. Is that the issue?

[twitter-dev] Re: Developer Preview: Geolocation API

2009-08-20 Thread bg
Ryan, Thanks for the updates. Your example has ** after lat and lng. Is this the proper format or some highlighting? Thanks again, Brad *georss:point37.780467** -122.396762**/georss:point* On Aug 20, 5:55 pm, Andriy Ivanov tigrus...@gmail.com wrote: really cool! Very excited to see it! On

[twitter-dev] Re: Developer Preview: Geolocation API

2009-08-20 Thread Ryan Sarver
Nelson, Thanks for the email and glad you picked up on GeoRSS. We don't have any plans for this release to support georss:radius. We picked the standard because we like the flexibility and the types of geospatial data it can describe. The W3C Geolocation API is close to my heart. I started the

[twitter-dev] Re: Developer Preview: Geolocation API

2009-08-20 Thread Ryan Sarver
Brad, Ah, sorry -- looks like the bolding syntax messed it up. There should be no asterisks in the API. Best, Ryan On Thu, Aug 20, 2009 at 4:02 PM, bgmapicuri...@gmail.com wrote: Ryan, Thanks for the updates. Your example has ** after lat and lng. Is this the proper format or some

[twitter-dev] Re: Developer Preview: Geolocation API

2009-08-20 Thread Lepton
Perfect timing! My iPhone app about to be released has a lot to do with geolocation, and already uses Twitter to set and see locations of people. Myallo HotList tracks the hotness of people and places in your social universe partly through their locations. For example as a person gets nearer to

[twitter-dev] large user base push notification solutions?

2009-08-20 Thread ke...@nibirutech.com
Hi I am a developer , trying to figure out a way to develop a push notification solution for iPhone users. The easy way to do the push work, is to have a cron-job to check users' new mentions and DMs. It should work for small number of users. What if we have a large user base, say , 500, 000

[twitter-dev] Re: help retrieving tweets from other users!

2009-08-20 Thread raashid bhatt
ohhh! thanks! brother On Aug 20, 2:15 pm, jim.renkel james.ren...@gmail.com wrote: raashid, Multiple parameters in the same request are separated by 's, not another ?. :-) Try these, they seem to work for me: http://twitter.com/statuses/user_timeline.xml?id=raashidbhattpage=2 or

[twitter-dev] Re: xml results from search with location?

2009-08-20 Thread hpoom
I really need this too! At the moment I am doing a 'search' query, then doing a 'users/show' for each reply in the search query to get the location of each person. But this is not working as I soon get blocked for performing too many 'users/show' requests. If we could just have the location in

[twitter-dev] batch API calls

2009-08-20 Thread Swan
I have been whitelisted. We are currently developing our caching strategy. We store Twitter user information for the hosts of events that we get from the user.xml API call. We would like to refresh our cache daily to update the follower/following info as well as any possible Bio, Name, or

[twitter-dev] URGENT HELP NEEDED

2009-08-20 Thread Kuntal
Hello All, I want to show updates are from my web application name instead of from web We want to integrate the status update system of twitter in our web application which is made in .NET Framework 2.0. We have integrated it successfully and is updating the status. But the problem we are