[twitter-dev] Re: Retweets and Mentions not returning for few accounts

2011-03-24 Thread DR.Smartbridge
Hi Taylor, The Twitter account I am having the problem is balu4evr. When I use Apigee tool, I am able to get Retweets. In my application I am using Twitterizer API and the API is not returning the retweets and no error is returned and the API is returning empty collection in this case. It seems

[twitter-dev] Re: 401 unauthorized

2011-03-24 Thread Ninjamonk
any news on this? bit of a joke that it's been going on for a week now and we have no eta on a fix. I have 2 apps waiting to release but as they feature sign in with twitter I cannot do it. One is for the new F1 season which kicks off this weekend... On Mar 24, 2:46 am, Craig Walls

Re: [twitter-dev] Geo AP

2011-03-24 Thread Augusto Santos
What you mean with geo api? geotagged tweets? trending topics per country/city? places? On Wed, Mar 23, 2011 at 9:58 PM, Daryoush dpak...@gmail.com wrote: Does twitter geo api work in Australia? -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via

Re: [twitter-dev] Re: 401 unauthorized

2011-03-24 Thread Trevor Dean
Yes I was also hoping or a more recent update, the last one was over 18 hours ago and didn't provide much detail ( http://code.google.com/p/twitter-api/issues/detail?id=2118). On Thu, Mar 24, 2011 at 7:56 AM, Ninjamonk dar...@stuartmedia.co.uk wrote: any news on this? bit of a joke that it's

[twitter-dev] Re: 401 unauthorized

2011-03-24 Thread Ninjamonk
Thanks for the link to the issue, now I can watch it. I have reverted to the http work around which I hate due to the lack of security. On Mar 24, 1:11 pm, Trevor Dean trevord...@gmail.com wrote: Yes I was also hoping or a more recent update, the last one was over 18 hours ago and didn't

[twitter-dev] how to remove the shortcut url which is generated by t.com

2011-03-24 Thread laxman
I want to use my own url, instead of shortcut URL generated by t.com. What are the entities there to do this. -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker:

[twitter-dev] Cannot get oauth request token

2011-03-24 Thread Alamo
Hello - I am totally new to developing apps that interact with twitter. I've registered my app, and need to get the request token back. This is my request followed by the exception I am getting. Is there something obvious I am missing? Is there a way to test if the request header I am using is OK

[twitter-dev] Re: consistency and ecosystem opportunities

2011-03-24 Thread Jimmy
The thing that is often lost in the discussion about the API and innovating is the fact that third party clients innovated significantly in the UI and UX of Twitter. In some cases Twitter's own clients lag behind considerably. Things like @ completion, hashtag completion come to mind as features

[twitter-dev] sending tweet through Java application

2011-03-24 Thread arun chaudhary
Hi guys I am developing an application through which I(users) can send tweet. There should be no need for the user to open browser and login and allow the application. I have registered a read/write app with twitter. And also send a mail to a...@twitter.com for xAuth permission. Its been 22 hrs

[twitter-dev] Clients do innovate!

2011-03-24 Thread Jimmy
The thing that is often lost in the discussion about the API and innovating is the fact that third party clients innovated significantly in the UI and UX of Twitter. In some cases Twitter's own clients lag behind considerably. Things like @ completion, hashtag completion come to mind as features

[twitter-dev] Re: 401 unauthorized

2011-03-24 Thread AG
I am using Twitterizer (.NET) and I am also experiencing this issue. This is very annoying... On Mar 23, 7:35 pm, Milos Golubovic stamina...@gmail.com wrote: I can also confirm this behavior.  Is it me or is everyone in here using .NET? Did I possibly miss somewhere that this is a .NET forum?

[twitter-dev] I found a good solution for PHP language detection in tweets

2011-03-24 Thread Adam Green
This has been a problem with collecting tweets from the API since I started working with it. My users only want English tweets and they view non-English tweets that I deliver to be a bug in my software. The lang=en argument in the search API only filters a small percentage of this, and I know of

Re: [twitter-dev] Geo AP

2011-03-24 Thread Daryoush Paknad
geo/naerby_places geo/search geo/similar_places geo/reverse_geocode geo/place Specifically :http://api.twitter.com/1/geo/nearby_places Thanks. On Thu, Mar 24, 2011 at 5:30 AM, Augusto Santos augu...@gemeos.org wrote: What you mean with geo api? geotagged tweets? trending topics per

Re: [twitter-dev] I found a good solution for PHP language detection in tweets

2011-03-24 Thread Matthew Terenzio
Hi Adam, Did you see this? I haven't tested it. Just was curious to look around after your post. http://stackoverflow.com/questions/1550950/detect-chinese-multibyte-character-in-the-string Matt Terenzio On Thu, Mar 24, 2011 at 10:50 AM, Adam Green 140...@gmail.com wrote: This has been a

[twitter-dev] Inconsistency between JSON XML for favorited retweets

2011-03-24 Thread Terence Eden
There seems to be an error with the JSON feed when it comes to retweets. User Alice favourites a tweet from Bob, and then retweets to to Charlie. The JSON feed that Charlie gets marks Bob's tweet as one of Charlies favourites. This does not happen in the XML feed. JSON (snipped) created_at

[twitter-dev] Site stream using php

2011-03-24 Thread Kris
Hi All, I want to use the twitter site stream. Some of the recommendations are to add users to a small connection and then when the users build up, open a new connection and move all the users to another connection. How can I do this? How do I add or remove users from a connection? Please

[twitter-dev] Re: Bigger avatar images for users/profile_image/twitter ?

2011-03-24 Thread Julien C
Yes, but it's not square, which I don't like. I've got the same problem with Facebook, actually: the square version of the profile pic is tiny. On Mar 7, 6:22 pm, Ken D. k...@cimas.ch wrote: Avatars come in three sizes:         mini = 24x24         normal = 48x48         bigger = 73x73

Re: [twitter-dev] Inconsistency between JSON XML for favorited retweets

2011-03-24 Thread Matt Harris
Hi Terence, There is a known issue where retweets are being reported as favorites (or not) when they shouldn't be. The ticket being used to track this is on our public issue tracker: http://code.google.com/p/twitter-api/issues/detail?id=2096 Best, @themattharris Developer Advocate, Twitter

[twitter-dev] need emergency help

2011-03-24 Thread Blaaze
hi all i am abhilash from india, am trying to design a new site where users post their posts, but i need it to be also posted on twitter on the specific user's twitter page, the user is asked to login to twitter and allow the permission to my app to do status update, but the real part what i need

Re: [twitter-dev] need emergency help

2011-03-24 Thread Trevor Dean
When the user is returned to your site after authenticating you can grab the oauth_token and the oauth_verifier from the url and use that to get an access token. I'm using .NET and the Twitterizer API to accomplish this, I'm not sure what language you're doing this in or if you are using a third

[twitter-dev] Re: setFollow Filter mentions

2011-03-24 Thread Riley
I am having the same issue, if anyone is able to help out that would be great! Hope: Have you been able to solve this issue? -Riley -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker:

Re: [twitter-dev] need emergency help

2011-03-24 Thread Blaaze Artifex
thanks for your reply, am using php and am not going to use those variables in the same session instead am going to use them in future (may be after many days), will it work.? On Fri, Mar 25, 2011 at 1:42 AM, Trevor Dean trevord...@gmail.com wrote: When the user is returned to your site