[twitter-dev] (401) Unauthorized

2010-10-05 Thread Trevor Dean
I am getting an error executing the same code that has been working fine until today. I am getting an error when attempting to get access token, the error is "Invalid / expired Token". I'm not sure what changed from yesterday to today, any idea? I am running this code locally so the callback is

Re: [twitter-dev] (401) Unauthorized

2010-10-05 Thread Tom van der Woerdt
Like the error says: your token is invalid or has expired. Make sure that you are using the correct ones. Tom On 10/5/10 1:20 PM, Trevor Dean wrote: > I am getting an error executing the same code that has been working fine > until today. I am getting an error when attempting to get access tok

Re: [twitter-dev] (401) Unauthorized

2010-10-05 Thread Trevor Dean
This code hasn't changed and was working yesterday and has been working for many months. This error is happening right after the user has allowed the application permission and is returning back to my application with tokens. There is no chance for these tokens to expire so I don't think that thi

[twitter-dev] Hotlinking images

2010-10-05 Thread Christian Fazzini
Creating a new Twitter app. I am thinking whether I should save the users images (profile and background) on the local server or hotlink it instead? Whats the e-etiquette for this? Does Twitter encourage us to hotlink images? -- Twitter developer documentation and resources: http://dev.twitter

Re: [twitter-dev] Hotlinking images

2010-10-05 Thread Thomas Mango
I believe it's okay to directly use the URLs given in responses (like the user's profile image url), but you'll quickly run into issues where those URLs will stop working when someone changes their profile image. I suggest keeping a copy of the image cached yourself and updating it every so of

Re: [twitter-dev] Adding twitter message

2010-10-05 Thread Knutsford Software
PHP has now been upgraded to 5.2 on the server but it is now failing with Invalid / used nonceI gather that is due to the timezone not being liked. The site is being hosted in the UK so what do I do about the timezone so that twitter is happy pleas?so that Twitter is happy?Thanks -- Twitter dev

[twitter-dev] "Over the limit for this type of request, please wait a while and try again"

2010-10-05 Thread James Peter
Hi folks, Our service has been down for over 3 days now due to broken API calls. Still waiting on any information from Twitter about what's going on, but still in the dark. About 3 days ago we started receiving messages (incorrectly in the new error structure) saying "Over the limit for this typ

[twitter-dev] Re: Search with geocode does not respect search radius?

2010-10-05 Thread _ado
For what it's worth, I'm seeing the same issue. Radius parameter is completely ignored. Data returned for, for example, a 1 mile radius will return results spanning 60 miles. -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/t

[twitter-dev] Twitter Search

2010-10-05 Thread lionmate
How I fetch twitter feeds for 10 days before from a specified date? I want to get feeds for a specific stock symbol like HLNT for 10 days. -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracke

Re: [twitter-dev] Adding twitter message

2010-10-05 Thread Tom van der Woerdt
If you simply use time() then you'll get the correct timestamp, assuming that the server's clock is correct. Timezones do not influence time(). Tom On 10/5/10 3:29 PM, Knutsford Software wrote: > PHP has now been upgraded to 5.2 on the server but it is now failing with > > Invalid / used nonce

Re: [twitter-dev] "Over the limit for this type of request, please wait a while and try again"

2010-10-05 Thread Taylor Singletary
Hi James, I'll re-post this in the group thread as well. Due to potential abuse, we've begun locking down bulk deletions that were previously unbound. These lack of limits lead to many application suspensions and blacklisting as the lack of a rate limit was often interpreted as "give us all you'v

Re: [twitter-dev] Adding twitter message

2010-10-05 Thread Knutsford Software
Stupid me - of course it doesn't. The server's clock appears to be way out. Thanks - Original Message - From: "Tom van der Woerdt" To: Sent: Tuesday, October 05, 2010 3:07 PM Subject: Re: [twitter-dev] Adding twitter message If you simply use time() then you'll get the correct

Re: [twitter-dev] Re: Search with geocode does not respect search radius?

2010-10-05 Thread Matt Harris
This is a know issue which the team is working on at the moment. I'll post an update when a fix is deployed. --- @themattharris Developer Advocate, Twitter http://twitter.com/themattharris On Mon, Oct 4, 2010 at 8:36 PM, _ado wrote: > For what it's worth, I'm seeing the same issue. Radius para

[twitter-dev] status destroy / caching in NewTwitter.

2010-10-05 Thread Tom Monaghan
Hi folks, Can someone please share the caching expiration plan for newtwitter? It seems to cache new content for a really, really long time (at least 12 hours, though I think this number is falling). A few of our apps will regularly destroy some of their past tweets. Users with oldtwitter will no

Re: [twitter-dev] Twitter Search

2010-10-05 Thread Matt Harris
Twitter Search only contains Tweets for ~5 days so there isn't a way to 'find' the Tweets you are looking for using the Twitter APIs directly. Instead, we recommend you 'track' the keywords you are interested in using the Streaming API. This will allow you to aggregate all the Tweets that match wh

Re: [twitter-dev] xAuth - sometimes success response, sometimes Error-response

2010-10-05 Thread Taylor Singletary
It's likely not the nonce that is invalid in this case -- or the timestamp. In this case, the error specifically is indicating that it couldn't validate the request. Does the alternate 401 vs success happen with the exact same credentials, or are you using different credentials? Taylor On Mon,

[twitter-dev] Is the authorized user count for apps still available?

2010-10-05 Thread Jon Colverson
Hello. I remember seeing somewhere a stat showing how many users had authorized API access for my app, but I can't seem to find it anymore. Is this number no longer available, or is it still there and I'm a dunce for not being able to find it? Thanks. -- Jon -- Twitter developer documentation

Re: [twitter-dev] Is the authorized user count for apps still available?

2010-10-05 Thread Thomas Mango
Hey, Jon. This was actually just answered recently: http://groups.google.com/group/twitter-development-talk/browse_thread/thread/979d3d5bdfa06083 Basically, no it isn't readily available anymore and it would be better to track it yourself. Jon Colverson wrote: Hello. I remember seeing somewh

[twitter-dev] Re: can email be accepted when using OAuth?

2010-10-05 Thread Gary
Hi, I'm also having this problem. I cannot login using the user's email. AFAIK, I am encoding according to the documentation. I encode the post body and then encode again when I create the signature base string. Assume: screen name: myscrname password: m...@password<--- note I added @ t

[twitter-dev] Re: Is the authorized user count for apps still available?

2010-10-05 Thread Jon Colverson
Oh, thank you. I did try searching the list, but didn't come up with the right query to find it. I guess I'll go look into app analytics! Thanks again. -- Jon On Oct 5, 7:01 pm, Thomas Mango wrote: > Hey, Jon. This was actually just answered > recently:http://groups.google.com/group/twitter-de

Re: [twitter-dev] Re: can email be accepted when using OAuth?

2010-10-05 Thread Tom van der Woerdt
Those aren't base strings. Use the OAuth Base String validator @ By the way: I'm not sure about logging in with E-Mail addresses. It may work, and it may not. Tom On 10/5/10 8:27 PM, Gary wrote: > Hi, > > I'm also having this problem. I cannot login using the

[twitter-dev] @Anywhere communicate with PHP OAuth

2010-10-05 Thread Krileon
I've been reading that it is planned, but is it ever going to happen? Facebook does hits, Google Friend Connect does this (subsequently provides Twitter login as well through their API), so why can't twitters own API? Just pass a authorized key and secret with the cookie so we can through it throug

[twitter-dev] Creating a list without description silently fails (on website as wel as using API

2010-10-05 Thread Bert Lagaisse
Whenever I create a list, using the twitter.com website, or using the api, and I dont' give a description (which is marked optional in the api), then the list is not created. However, there is no error message. This bug can only have been introduced in the last weeks I think. Any one else with thi

Re: [twitter-dev] @Anywhere communicate with PHP OAuth

2010-10-05 Thread Abraham Williams
The functionality is there just not officially supported. http://blog.abrah.am/2010/09/using-twitter-anywhere-bridge-codes.html Abraham - Abraham Williams | Hacker Advocate | http://abrah.am Update: http://blog.abrah.am/2010/10/organizing-my-life.html @abraham | http://projects.abrah.

[twitter-dev] Re: Creating a list without description silently fails (on website as wel as using API

2010-10-05 Thread Ken D.
Nice find! This is recent, a day or two. There is confusion elsewhere in the doc regarding optional parameters, For example, in DELETE :user/lists/:id, id is said to be optional. If this also fails in the Twitter UI there is hope that it will be fixed soon. For now Bert, this bug is yours: http:

[twitter-dev] URL parameters

2010-10-05 Thread MigueL DíaZ
Hi all, I'm developing a twitter client app and I'm trying to find out how do I navigate through the timeline. I've implemented oauth and have a lot of methods working, including retrieving the timeline. A call to http://api.twitter.com/1/statuses/home_timeline.json gives me the first 20 tweets,

[twitter-dev] Re: can email be accepted when using OAuth?

2010-10-05 Thread Gary
Hi Tom, These are the base strings with fictitious username, password and consumer key and so they will not pass through the validator. I have checked the actual base strings and they check-out ok. Anyway, what I'm looking for is a definite yes or no as to whether email addresses-login is suppor

Re: [twitter-dev] URL parameters

2010-10-05 Thread Tom van der Woerdt
Just add the parameters to the Base String. Don't add the query to the URL part of the Base String though! The easiest way to check whether your base string is correct or not, is to use the OAuth Base String validation tool at Tom On 10/5/10 11:06 PM, MigueL DíaZ

Re: [twitter-dev] Re: can email be accepted when using OAuth?

2010-10-05 Thread Tom van der Woerdt
I just did a quick check in my own application, it failed. So, unless Taylor, Matt or John says otherwise, you should consider the definite answer to be a No. Tom On 10/5/10 11:25 PM, Gary wrote: > Hi Tom, > > These are the base strings with fictitious username, password and > consumer key and

[twitter-dev] Re: can email be accepted when using OAuth?

2010-10-05 Thread Gary
Here are the post body and base strings where the fictitious credentials are cooked into the base string so it should pass the validator: x_auth_mode=client_auth&x_auth_password=my %40password&x_auth_username=me%40somewhere.com POST&https%3A%2F%2Fapi.twitter.com%2Foauth %2Faccess_token&oauth_cons

[twitter-dev] Re: Creating a list without description silently fails (on website as wel as using API

2010-10-05 Thread Bert Lagaisse
Posted ;-) I hadn't run my unittests for my upcoming WP7 twitter client in two weeks. Just ran them again and discovered this "feature" ;-) I now force the user to enter a description ;-) greets Bert Lagaisse www.virtual-remote.com/twozaic -- Twitter developer documentation and resources: http

[twitter-dev] is it required to include call classes

2010-10-05 Thread nidhi
Do we need to add all the classes and folder provided in Twitter+Outh just to post message in iphone application. Can we have some other way where i need not to include all the classes. Thanks' -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter:

[twitter-dev] API Search Method: Question on "since" operator

2010-10-05 Thread Satish
Hi, In the search API, the documentation says the "since" operator returns a HTTP 404 error if it is too old. How to determine if a date is too old for searching? In general, up to what date in the past will the API returns data? Thanks Satish -- Twitter developer documentation and resources:

[twitter-dev] Re: Creating a list without description silently fails (on website as wel as using API

2010-10-05 Thread Ken D.
In my app, the list names are quite descriptive, so until this gets fixed - and I think it will be - I send description=name which makes some sense as the originally input name is transformed (loss of capitals and special characters) and does not appear in the Twitter UI anyway. On Oct 6, 1:06 am