Re: [twitter-dev] Re: 401 to site streams since yesterday

2011-07-27 Thread Tim Haines
. Have you tried a verify credentials call with your user you connect with? Cheers, Tim. On Fri, Jul 22, 2011 at 1:17 AM, Fabien Penso fabienpe...@gmail.com wrote: Am I the only one having this issue? On Thu, Jul 21, 2011 at 9:19 AM, Fabien Penso fabienpe...@gmail.com wrote: Hi, Any idea

Re: [twitter-dev] lists.json API call ignoring the callback parameter as of the last few hours

2011-07-08 Thread Tim Meadowcroft
On Thursday, July 7, 2011 12:45:05 AM UTC+1, themattharris wrote: This should now be fixed. Let us know if you find it isn't. Yep - confirmed as fixed for me ... many thanks guys ! -- T -- Twitter developer documentation and resources: https://dev.twitter.com/doc API updates via Twitter:

[twitter-dev] lists.json API call ignoring the callback parameter as of the last few hours

2011-07-01 Thread Tim Meadowcroft
changed ?? -- Tim -- Twitter developer documentation and resources: https://dev.twitter.com/doc API updates via Twitter: https://twitter.com/twitterapi Issues/Enhancements Tracker: https://code.google.com/p/twitter-api/issues/list Change your membership to this group: https://groups.google.com/forum

Re: [twitter-dev] lists.json API call ignoring the callback parameter as of the last few hours

2011-07-01 Thread Tim Meadowcroft
Glad it's not just me then ! Here's an entire curl request with headers in case that gives any clues (eg if it's particular hosts behind a load balancer) Cheers -- Tim curl -v http://api.twitter.com/1/lists.json?callback=abcscreen_name=schmerg; * About to connect() to api.twitter.com port

Re: [twitter-dev] lists.json API call ignoring the callback parameter as of the last few hours

2011-07-01 Thread Tim Meadowcroft
is too heavywight (add it to the prioritised list) but blind whinging feels like.. blind whinging. Happy to hear it's been escalated for someone to at least have a look at whether it was intended or not, and it's not just me being an idiot (again). Cheers -- Tim -- Twitter developer documentation

Re: [twitter-dev] Twitter widgets not using entities to present t.co links

2011-06-24 Thread Tim Meadowcroft
Thanks Matt, filed as a feature request rather than a defect http://code.google.com/p/twitter-api/issues/detail?id=2250 -- T -- Twitter developer documentation and resources: https://dev.twitter.com/doc API updates via Twitter: https://twitter.com/twitterapi Issues/Enhancements Tracker:

[twitter-dev] Re: Having issues with twitter signin

2011-06-13 Thread Tim
I have the same problems. The request I made (keys and such deleted): wget https://userstream.twitter.com/2/user.json; --header Authorization: OAuth realm=Twitter API,oauth_consumer_key=,oauth_token=,oauth_nonce=,oauth_timestamp=1307967420,oauth_signature_method=HMAC-

[twitter-dev] Re: Unwanted T.CO shortening

2011-06-11 Thread Tim Meadowcroft
On Saturday, June 11, 2011 1:23:47 PM UTC+1, Adam Green wrote: I believe that at least part of Twitter's motivation is based on protecting users from spam and viruses. In that case, why not implement some purging alogrithms? Here's an easy one. If an account follows nobody and only sends

[twitter-dev] Finding old tweets

2011-06-08 Thread Tim Skipper
Is it possible, by way of the API or otherwise, to find a tweet that I sent, and it's reply from the recipient, from May 2010? I know the time of the reply (to the nearest minute) if that helps. I know that is a *very* long time ago in the world of Twitter! Regards, Tim Skipper http

Re: [twitter-dev] Re: Why is there no @Anywhere version of the Tweet Button with Count?

2011-06-08 Thread Tim Meadowcroft
He was maybe thinking of a response to a similar question on another thread. The way the tweet and follow buttons are done has changed. If you want to create a button after widgets.js has been loaded (any sort of dynamic use), then you're supposed to do this by adding an iframe with appropriate

[twitter-dev] Re: @Anywhere Login Timeouts

2011-06-08 Thread Tim Meadowcroft
While looking at localStorage in the browser, I noticed that when I connect with @anywhere various details are written to localStorage for my page including twitter_anywhere_cache_[account/verify_credentials,[]]_expiry: 1307546741323 twttr_anywhere_expiry: 1307552140184 which if

[twitter-dev] Re: t.co?

2011-06-05 Thread Tim Meadowcroft
The point of t.co, as I understand it, is twitter's very different dynamic with regards to spam. Consider a scenario: someone creates a new account, sends one message with @mentions of 5 high profile people, almost no text, but an http ref (perhaps wrapped behind a shortener, maybe not). In

Re: [twitter-dev] is sitestream losing tweets?

2011-06-01 Thread Tim Haines
I haven't tested it thoroughly to be 100% certain it's the cause, but I suspect it's skipping the occasional fav and rt. Tim. On Wed, Jun 1, 2011 at 11:50 AM, Michael michaelzen...@gmail.com wrote: In my setting, user Y has authorized my user X for sitestreaming purpose. In most cases

[twitter-dev] Re: Reducing rate-limited calls to friends/ids

2011-05-19 Thread Tim Meadowcroft
then at the mercy of some other service being up to date and operational, but it works at the moment. @themattharris - I don't want to offend you guys so I won't name the solution I'm thinking of unless you say it's OK to do so here. -- Tim -- Twitter developer documentation and resources

[twitter-dev] Re: Twitter Profile Widget Change Header Text

2011-05-12 Thread Tim Meadowcroft
Personally I read the full source to see what's going on, and then figure out how to work around bits of it, so for example I might see when the header title is set and the selectors used, and then use its own routines to modify them (eg hdr = widget.byClass(twtr-hd, div) and then manipulate

[twitter-dev] Re: Twitter Profile Widget Change Header Text

2011-05-11 Thread Tim Meadowcroft
If the standard widget code (http://twitter.com/widgets) is what you're looking at then I should point out * Author: Dustin Diaz (dus...@twitter.com) * For full documented source see http://twitter.com/javascripts/widgets/widget.js * Hosting and modifications of the original source IS

[twitter-dev] Re: What does tweet id means?

2011-04-20 Thread Tim Meadowcroft
I think you can only really rely on IDs having different values. In general, at the moment with Twitter, you could assume they increase over time, but (and I don't work for Twitter) typically ID allocation on large multihost systems don't work by allocating strictly sequential IDs without

[twitter-dev] Re: How to get the number of pages in user's timeline

2011-04-19 Thread Tim Meadowcroft
I'm pretty sure all tweet IDs are in a single global ordering, so 1 week ago is the same numerical ID (for the since_id) param for every user account. So you could post a single tweet (or similar) every day and use this to build a date to ID mapping over time... then you'll know an ID to use

[twitter-dev] Re: How to get the number of pages in user's timeline

2011-04-16 Thread Tim Meadowcroft
The users/show API includes a statuses_count field which tells you how many tweets the user has posted http://dev.twitter.com/doc/get/users/show -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi

[twitter-dev] Re: need twitter spam for a research project

2011-04-10 Thread Tim Meadowcroft
On Monday, April 4, 2011 2:19:38 AM UTC+1, Jeff Tucker wrote: Unfortunately (I can't believe that I'm writing this) I am having a hard time getting spammers to actually spam me. Is there any way that I can somehow get access to the tweets of several dozen spam accounts (prior to when

[twitter-dev] Re: Does anyone has Javascript function to convert date into twitter time format

2011-04-01 Thread Tim Meadowcroft
gems such as the Twitalinkahashifyer - handy routines for linking @user and the like -- Tim -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues

[twitter-dev] Re: GET :user/lists/:id/statuses stopped working

2011-04-01 Thread Tim Meadowcroft
The twitter widget used to call the old address, but a new version was posted a couple of days ago (without incrementing the version number in the comment at the top) that construct URLs of the 2nd form... guess they standardised this and I'm pretty sure it changed over only in the last week

[twitter-dev] Re: Are embedded videos available through the API?

2011-03-19 Thread Tim Bull
Have you looked at embed.ly? You can use the entities to extract the URLs really easily too http://developer.twitter.com/pages/tweet_entities Tim On Mar 20, 10:44 am, Scott Wilcox sc...@dor.ky wrote: Hi Adam, I've not seen anything API side for it (for public use), I think mostly its built

Re: [twitter-dev] Twitter group API

2011-03-15 Thread Tim Haines
No, there's not. On Tue, Mar 15, 2011 at 1:03 PM, Richard fireston...@gmail.com wrote: Does anyone know if there is program available to create several groups using one Twitter account and allowing you to message each of those groups individually? For example - Twitter.com/username

[twitter-dev] Twitter List

2011-03-14 Thread Tim Grant
Is there anyone that can help me with the Twitter API? I am creating an app with loads of info for users, but I would love to include a screen that displays the tweets of lists that I have created. It's not a place for users to post their own tweets, just a reader. The user would first see a

[twitter-dev] Hoping to clear my confusion about Twitter's announcement

2011-03-14 Thread Tim Haines
of this. I look forward to receiving your reply and having my concerns put to rest. Regards, Tim. -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api

[twitter-dev] Secure avatar URLs

2011-02-25 Thread Tim
I notice that avatar URLs on twimg.com subdomains have secure equivalents. e.g. http://a3.twimg.com/... maps to https://si2.twimg.com/... Is there a reliable way for me to perform these mappings for displaying avatars on a secure page? Perhaps the profile image API end point needs a ssl=true

[twitter-dev] oaut token secret lengths

2011-02-17 Thread Tim Skipper
Is it still the case that the maximum size for an oauth token or secret is 50 characters? -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker:

[twitter-dev] Xml output of friendships/show api call

2011-02-15 Thread Tim Skipper
. Is this source blocking the target or not? Some clarity would be much appreciated! Regards, Tim Skipper -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter

[twitter-dev] Re: Count of Retweet Messages

2011-02-14 Thread Tim Skipper
/doc/get/statuses/retweets_of_me Regards, Tim Skipper -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership

[twitter-dev] Re: Looks like our application is DOA...

2011-02-13 Thread Tim Skipper
twitter apps just because it's the latest bandwagon to jump on, rather than because it's the most suited platform for the task in hand. I personally think Twitter should bin DMs altogether, it seems at odds with what Twitter is all about. Regards Tim -- Twitter developer documentation and resources

[twitter-dev] Re: how to communicate with followers

2011-02-13 Thread Tim Skipper
? If they've not, then shame on you for adding to the spam pool. Regards Tim -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your

[twitter-dev] oAuth Authorization Header

2011-02-08 Thread Tim Skipper
Is the order of the parameters important in the Authorization header? Must it match that of the base string used for signing? Regards, Tim Skipper http://www.intonet-technology.co.uk -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http

[twitter-dev] Re: Upgrading from Read to Read / Write access for OAuth API Key

2011-01-31 Thread Tim Bull
While this makes me happy (from a developers point of view), surely this is a bug and therefore not to be relied on? As a user, I agree with the logic that if I authorised Read only, the application shouldn't be able to turn this into Read/Write without some subsequent approval. Tim On Jan 31

[twitter-dev] Re: Upgrading from Read to Read / Write access for OAuth API Key

2011-01-31 Thread Tim Bull
-authorize the application, I do not think that this is a bug. Tom On 1/31/11 10:45 PM, Tim Bull wrote: While this makes me happy (from a developers point of view), surely this is a bug and therefore not to be relied on? As a user, I agree with the logic that if I authorised Read only

[twitter-dev] Re: Upgrading from Read to Read / Write access for OAuth API Key

2011-01-30 Thread Tim Bull
OK, that's more or less what I expected. Just one last confirmation - the API key won't change though right? So if I add read / write the read users won't suddenly be de- authenticated? Cheers, Tim On Jan 31, 6:19 am, Taylor Singletary taylorsinglet...@twitter.com wrote: You'll have to re-ask

[twitter-dev] Upgrading from Read to Read / Write access for OAuth API Key

2011-01-29 Thread Tim Bull
then post? Or is there a way of knowing before hand it will fail and asking them to upgrade? Thanks, Tim -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api

Re: [twitter-dev] Streaming Unfollow events through Site Streams

2011-01-21 Thread Tim Haines
David, what you're seeing is what I'm seeing too - and it's what I'd expect to see. On Fri, Jan 21, 2011 at 6:25 AM, David dtran...@gmail.com wrote: Should we be seeing unfollow events for both when our tracked user is the source and the target? I'm only seeing unfollow events where the

Re: [twitter-dev] Streaming Unfollow events through Site Streams

2011-01-19 Thread Tim Haines
subscribe me at : http://samuraism.jp/ On Jan 19, 2011, at 16:04 , Tim Haines wrote: Yes, I expect so. On Wed, Jan 19, 2011 at 2:51 PM, Yusuke Yamamoto yus...@mac.com wrote: Twitter4J already supports the feature. http://twitter4j.org/jira/browse/TFJ-529 Will the it come back later? -- Yusuke

Re: [twitter-dev] Streaming Unfollow events through Site Streams

2011-01-18 Thread Tim Haines
Just incase anyone else is playing with these, the unfollow events were just removed (deploy was rolled back). On Wed, Jan 19, 2011 at 5:14 AM, Matt Harris thematthar...@twitter.comwrote: Hey everyone, Starting today we will be streaming unfollow events through Site Streams. These events are

Re: [twitter-dev] Streaming Unfollow events through Site Streams

2011-01-18 Thread Tim Haines
follow me on : http://twitter.com/yusukeyamamoto subscribe me at : http://samuraism.jp/ On Jan 19, 2011, at 14:33 , Tim Haines wrote: Just incase anyone else is playing with these, the unfollow events were just removed (deploy was rolled back). On Wed, Jan 19, 2011 at 5:14 AM, Matt Harris

[twitter-dev] Vague rules surrounding the verified account badge

2011-01-10 Thread Tim
I found the following: The Verified Badge cannot be used unless it is provided by Twitter. Accounts using a badge as part of profile pictures, background images, or in any way implying false verification will be permanently suspended. ( from

Re: [twitter-dev] Streaming Site API hogs at some stage

2011-01-02 Thread Tim Haines
The best practices guide (or some doc) explains the streaming connections have heartbeats every 60 seconds or so. You should listen for them. If you don't hear one for 90 seconds, drop the connection and reconnect. On Sun, Jan 2, 2011 at 7:48 PM, Artem Skvira artem.skv...@gmail.com wrote: Hi

[twitter-dev] GET users/show 401

2010-12-14 Thread Tim Chen
with authentication. Looking at the docs, it says it needs no authentication. I wonder what has changed, or I'm doing something wrong? Thanks, Tim -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker

[twitter-dev] Re: Finding Tweets about Places

2010-12-09 Thread Tim Hastings
Are there any plans to add support for Foursquare's Venue ID? -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership

[twitter-dev] Re: oauth_callback

2010-12-08 Thread Tim Bull
if they are implicitly supporting these parameters because they comply with oauth and therefore documented elsewhere. T On Dec 8, 8:07 pm, Dave-twiends i...@davesumter.com wrote: Hi Tim, I'm pretty sure the oauth_verifier is documented in their oAuth articles.. I'm speeking from memory here, but I'm

[twitter-dev] Minor bug in Application Settings / Configuration... (http://dev.twitter.com/apps)

2010-12-07 Thread Tim Bull
URL is critical and shouldn't be allowed to be left blank, although also I think if I pass an oauth_callback even if it IS blank it should acknowledge it. Cheers, Tim -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com

[twitter-dev] Re: oauth_callback

2010-12-07 Thread Tim Bull
with the spec; worth making this change regardless, a lot of Twitter libraries don't implement it). Hope this helps... Tim -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http

[twitter-dev] Re: register twitter app which is on intranet

2010-12-07 Thread Tim Bull
Use the OOB process - so pass oauth_callback=oob and you should get a PIN from Twitter which you then use in fetching your access_token. http://dev.twitter.com/pages/auth_overview#oob -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter:

[twitter-dev] Re: register twitter app which is on intranet

2010-12-07 Thread Tim Bull
Oh, and while I think of it - if you just need the access token to make calls as your app (i.e. it's some kind of bot) then you don't even need to do that - just go to http://dev.twitter.com/apps, view your app and select my access token on the right. This will give you the access keys you need

Re: [twitter-dev] API for TOP Tweets

2010-12-03 Thread Tim Haines
Hey Rajat, Those are tweets that have been faved by @toptweets. You can retrieve favs from that user. You can also get the favs from @toptweets_de and the other languages if you want to. Tim. On Fri, Dec 3, 2010 at 4:06 PM, rajat rajat.triu...@gmail.com wrote: I wonder which API to use

Re: [twitter-dev] Re: oAuth still working for everyone.?

2010-12-02 Thread Tim Haines
requirements? Cheers, Tim. On Fri, Dec 3, 2010 at 7:59 AM, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Folks, We're going to rollback a subset of these changes for now. Before we give this another try, we'll let everyone know the specific pain points and give some time to adjust

[twitter-dev] report_spam 502 responses

2010-11-25 Thread Tim
I expect 502s from time to time, but I seem to get more 502s from the report_spam method than from any other. Spot-checking just now shows Over Capacity in the HTML response at a time when other services are responding normally. I wonder if this method has less resources devoted to it than

[twitter-dev] Any progress on Favorites API?

2010-11-22 Thread Tim Bull
I see posts from several months ago, so I thought I ask again http://groups.google.com/group/twitter-development-talk/browse_thread/thread/134d3bf90a717f8d/806fa7325dd1c6e7?lnk=gstq=twitter+favorites#806fa7325dd1c6e7 I need to regularly extract and process a users favorites and as noted in that

[twitter-dev] String IDs in keyless JSON arrays

2010-11-17 Thread Tim
I noticed a short while ago that keyless array responses, e.g. [182097517,183706717,...] were switched to string IDs, e.g. [182097517,183706717,...] Example method blocks/ids This appears to have reverted to integer IDs. I switched my code to take advantage of the change, and I have to switch

[twitter-dev] Re: String IDs in keyless JSON arrays

2010-11-17 Thread Tim
Example method blocks/ids correction: blocks/blocking/ids -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to

[twitter-dev] Re: String IDs in keyless JSON arrays

2010-11-17 Thread Tim
On Nov 17, 2:33 pm, Thomas Mango tsma...@gmail.com wrote: I haven't used it, but the stringify_ids parameter looks like it will (already does?) convert the response to an array of strings. Ace. I asked for this, but never saw the announcement http://twitter.com/twitterapi/status/28693580346 It

[twitter-dev] Re: String IDs in keyless JSON arrays

2010-11-17 Thread Tim
I've tested with blocks, friends and followers. I'll get round to patching my client with the other methods later on. Works great, thanks Taylor. -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi

[twitter-dev] Re: Error / lack of clarity in the OAuth documentation regarding the oauth_callback parameter

2010-11-12 Thread Tim Bull
FYI I see the correct flow is documented here: http://groups.google.com/group/twitter-api-announce/browse_frm/thread/472500cfe9e7cdb9?hl=en It's just not in the actual formal doco. Cheers, Tim On Nov 13, 4:29 pm, Tim Bull tim.b...@binaryplex.com wrote: Hi, I'm building a site

Re: [twitter-dev] Identify Suspended Accounts

2010-11-10 Thread Tim Haines
an automatic process in place checking for that. The 5% guess is based on a manual check about a month ago. I'd be happy to share this list with you if Twitter's not going to provide something themselves. Perhaps we could swap ids.. Cheers, Tim. On Thu, Nov 11, 2010 at 11:12 AM, DustyReagan

Re: [twitter-dev] Re: Copying or Importing Twitter Lists

2010-11-04 Thread Tim Haines
And it was given a medium priority in June. I wonder if Twitter can schedule an API week now that Hack week is done. T. On Thu, Nov 4, 2010 at 4:08 PM, Orian Marx (@orian) or...@orianmarx.comwrote: We're actually only a bit more than a month away from the one year mark from when this was

[twitter-dev] Broken Avatars

2010-11-01 Thread Tim
My cronjobs are picking up profiles with broken avatars. Mostly these appear to be 403s from Amazon S3. (guessing ACL problem) - Also some profile pic URLs don't appear to have file extension. Here's a list of user IDs affected 16043513 16750098 31585899 42854554 112564807 21895964 40581702

Re: [twitter-dev] How to count tweets with snowflake?

2010-10-28 Thread Tim Haines
No. On Thu, Oct 28, 2010 at 8:59 PM, Augusto Santos augu...@gemeos.org wrote: Hi folks, Is there a way to count how many tweets are between two snowflakes id? With the ids from today I can count around 1 billion tweets per day. Thanks, Augusto. -- http://geotweets.gemeos.org/ --

[twitter-dev] Re: missing X-RateLimit headers

2010-10-26 Thread Tim
Thanks Taylor, although it's odd because an app I've had live for many weeks has only just started erroring. I was fairly sure it was this. I will take a closer look. On Oct 26, 11:00 pm, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Tim, POST actions aren't rate limited

[twitter-dev] Re: Snowflake: An update and some very important information

2010-10-25 Thread Tim
What about methods that list IDs without keys? e.g. blocks/ids which produces a array like [ 12345, 6789, ] These appear to be still cast as integers. I don't see the point in having integer IDs at all. Surely the case of people wishing to handle them as integers is far smaller than the case

[twitter-dev] Empty responses

2010-10-25 Thread Tim
My cron jobs are picking up failures pulling specific users. The response body is empty, and the response status is 200 examples: http://api.twitter.com/1/users/show/cinebot.json http://api.twitter.com/1/users/show/silenteye.json Perhaps these users are suspended, or something, but I'm not happy

[twitter-dev] Re: Empty responses

2010-10-25 Thread Tim
I believe users/show returns with status 403, with user has been suspended in the text On Oct 25, 5:19 pm, Slate Smith sl...@slatesmith.com wrote: I haven't seen a method for checking a suspended or deleted account   yet. If anyone knows of a hack for that it would be nice. Messes w/   metrics

Re: [twitter-dev] REST API Rate Limiting

2010-10-14 Thread Tim Haines
them about it. Cheers, Tim. On Thu, Oct 14, 2010 at 4:53 PM, mihai.fa...@olivestudio.net mihai.fa...@olivestudio.net wrote: Hello. I have a problem with getting the user_timeline of an user. The limit is to 150 per hour, yet I get blocked at about the 3rd call. I moved my app to 3

[twitter-dev] User Streaming API and use of OAuth from web browser

2010-10-06 Thread Tim Bull
JavaScript for the OAuth? If it's not, what is the recommended approach for a client side web application to connect and authenticate to the user_stream? Thanks, Tim -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues

[twitter-dev] Fwd: Twitter Support: update on Favstar50celeb has been suspended.

2010-10-06 Thread Tim Haines
Hi Developer Advocates, I received this message today after @favstar50celeb has been unsuspended. Can I ask for a little more insight as to why @favstar50celeb was suspended and others like @favstar50 haven't been? Cheers, Tim. -- Forwarded message -- From: JuneClippers

[twitter-dev] Re: search results - how far does it go back

2010-10-04 Thread Tim Bull
The time window depends on how busy Twitter is as a whole - the search is not a fixed timeframe. On Oct 5, 7:16 am, Quy quyten...@gmail.com wrote: When try to search on results from a user like from:mashable, I only see results going as far back as 24 hours? I thought the archive went back

[twitter-dev] How long is it taking for support tickets to be reviewed and is it possible to expedite them?

2010-10-04 Thread Tim Bull
the survey before the account got suspended. The ticket is http://support.twitter.com/tickets/1256917 Thanks! Tim Bull -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http

[twitter-dev] Re: How long is it taking for support tickets to be reviewed and is it possible to expedite them?

2010-10-04 Thread Tim Bull
if they cancelled after that). Cheers, Tim On Oct 5, 8:14 am, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Tim, We looked into your request but unfortunately cannot expedite resolving it right now. In this case, the account used to post the tweets was suspended -- not your application

Re: [twitter-dev] Re: Site Streams - Unfollow Events?

2010-09-30 Thread Tim Haines
interested in it.. Tim. On Thu, Sep 30, 2010 at 12:42 PM, John Kalucki j...@twitter.com wrote: Please describe your use case for unfollows on Site Streams... -John Kalucki http://twitter.com/jkalucki Twitter, Inc. On Wed, Sep 29, 2010 at 5:09 PM, tsmango tsma...@gmail.com wrote: Ah I wasn't

Re: [twitter-dev] Site Streams - Unfollow Events?

2010-09-29 Thread Tim Haines
Seen this answered about 1 - 2 weeks ago. Answer is no. On Thu, Sep 30, 2010 at 6:23 AM, tsmango tsma...@gmail.com wrote: I was hoping for some clarification on the social events delivered to a Site Stream. The documentation (http://dev.twitter.com/pages/ site_streams) doesn't specifically

Re: [twitter-dev] Re: Streaming API skips users

2010-09-27 Thread Tim Haines
Thanks for following up with this Ginny. Brian has just pushed version 0.7.8 of the gem, which fixes this. Tim. On Tue, Sep 28, 2010 at 5:16 AM, Ginny Hendry ginnyhen...@gmail.com wrote: For anyone else who is having this problem, the fix has been identified but has not yet been published

Re: [twitter-dev] Re: Status Updates

2010-09-21 Thread Tim Haines
, but they don't disclosed the threshold in the interest of it not being abused. Cheers, Tim. On Tue, Sep 21, 2010 at 8:51 PM, Goran Popovic goranpopo...@gmail.comwrote: They are notified once and that's it ;) Well I got an idea to notify users lets say each 10 minutes ( ie. 100 users found today

[twitter-dev] Re: Who's using up my rate limit?

2010-09-12 Thread Tim Bull
, turns out that it was my local client (which I was using for monitoring the account and replying to users) which was using the other portion of the limit. Try disabling any other apps on the account and also shutting down any local monitoring client etc. and see if that helps. Tim On Sep 13, 5:31

[twitter-dev] Empty trend list

2010-09-07 Thread Tim
Hi, I'm writing an app that reads in the local and worldwide top trends from api.twitter.com/1/trends/woeid.xml Sometimes the xml comes back with no trends. Why is this? Thanks, Tim -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http

[twitter-dev] OAuth limit exceeded and error message reads 'Basic authentication is not supported'?

2010-09-07 Thread Tim Haines
. The error message being returned is a 401 and has a response body saying: Basic authentication is not supported when it should perhaps read rate limit exceeded. Cheers, Tim. -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com

Re: [twitter-dev] How does one know when a user revoked an app?

2010-09-05 Thread Tim Haines
to incorrect credentials. Tim. On Sun, Sep 5, 2010 at 7:26 PM, StuFF mc m...@stuffmc.com wrote: I couldn't find some callback but I obviously need to know when a user revoked my app. Or maybe I'm doing something wrong. Probably. Here's the idea: When a user accepted (we're speaking OAuth

[twitter-dev] Auto tweeting - guidelines and reporting bad practice

2010-08-17 Thread Tim
Is there anything in the terms of use about best practice for auto- tweeting? I refer to the irritating practice an app automatically tweeting a viral message from your account when you authenticate. e.g. I just got 50% somethingfactor on somelameapp.com, what's yours? It should be against the

[twitter-dev] Re: Issues with OAuth

2010-07-19 Thread Tim Davies
I've also been having this issue solidly for the last 5 hrs.

[twitter-dev] Re: xauth token exchange failing

2010-07-19 Thread Tim Davies
Im getting the same isalah. Twitter are aware of the issue. its during handshake for creating new tokens and maybe linked to several other OAuth issues that came to attention this morning. Im hoping it will be fixed shortly!

Re: [twitter-dev] sample (gardenhose) feed slowdown

2010-07-15 Thread Tim Haines
This was addressed in a previous email to the list. @jkalucki acknowledged a bug and was going to report on it soon.. On Fri, Jul 16, 2010 at 3:57 PM, Kam kamerondeckerhar...@gmail.com wrote: Hi, we've noticed that we're receiving about 1/4-1/3 the number of tweets that were coming in two

Re: [twitter-dev] wating for whitelist confirmation for over a week

2010-07-11 Thread Tim Haines
Ryan posted to this list, or announced it somewhere recently that they would process them after the world cup finished. He asked people not to write or re-request. Give it another week. Tim. On Mon, Jul 12, 2010 at 3:47 AM, hkimscil hkims...@gmail.com wrote: I have been waiting for being

Re: [twitter-dev] Any chance to get more than 20,000 calls per hour?

2010-07-10 Thread Tim Haines
to be the secret sauce you reveal on launch. :-) Tim. On Fri, Jul 9, 2010 at 11:42 PM, deadlychaos deadlychaos...@gmail.comwrote: Hi there, We have been building this application since 6 months now. It is anti- spam app which works with very different algorithms and has been very useful for twitter user

[twitter-dev] Re: Oauth Echo and Drupal

2010-06-21 Thread Tim Millwood
the HTTP_X_VERIFY_CREDENTIALS_AUTHORIZATION header to Authorization and POSTing both to the URL in HTTP_X_AUTH_SERVICE_PROVIDER. This returns the 401 error. On Jun 21, 3:11 pm, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Tim, The call specified in your HTTP_X_* headers is for the OAuth Echo provider

[twitter-dev] Re: Oauth Echo and Drupal

2010-06-21 Thread Tim Millwood
Tim On Jun 21, 4:28 pm, Taylor Singletary taylorsinglet...@twitter.com wrote: Awesome. There's much untapped potential in OAuth Echo beyond just the TwitPic, yFrog, etc. use cases. This is an area where you're going to have to be very exacting. Have you confirmed that the request you

[twitter-dev] Re: Oauth Echo and Drupal

2010-06-21 Thread Tim Millwood
Tried using Curl instead of drupal_http_request and got the following error. error setting certificate verify locations:\n CAfile: \/etc\/ssl\/ certs\/ca-certificates.crt\n CApath: none\n Not sure what that means On Jun 21, 4:40 pm, Tim Millwood t...@millwoodonline.co.uk wrote: I have a test

[twitter-dev] Re: Oauth Echo and Drupal

2010-06-21 Thread Tim Millwood
curl_setopt($link, CURLOPT_SSL_VERIFYPEER, FALSE); This worked! Now I get the error Failed to open\/read local data from file\/ application. On Jun 21, 8:20 pm, themattharris thematthar...@twitter.com wrote: Hi Tim, That error you are getting is often thrown when curl tries to verify

[twitter-dev] Re: Oauth Echo and Drupal

2010-06-21 Thread Tim Millwood
Removed curl_setopt($curl, CURLOPT_POST, 1); and it worked. Yay! http://drippic.com will be oAuth echo compatible within the next 24 hours. On Jun 21, 8:24 pm, Tim Millwood t...@millwoodonline.co.uk wrote: curl_setopt($link, CURLOPT_SSL_VERIFYPEER, FALSE); This worked! Now I get the error

[twitter-dev] Re: Oauth Echo and Drupal

2010-06-19 Thread Tim Millwood
headers from the test app, then my web app is renaming the HTTP_X_VERIFY_CREDENTIALS_AUTHORIZATION header to Authorization and POSTing both to the URL in HTTP_X_AUTH_SERVICE_PROVIDER. This returns the 401 error. On Jun 17, 2:44 pm, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Tim, I'm

[twitter-dev] Oauth Echo and Drupal

2010-06-17 Thread Tim Millwood
I'm trying to get oAuth Echo working with http://drippic.com My API url is http://drippic.com/drippic2/upload if you want to give it a try. Here is my code. $sp = $_SERVER['HTTP_X_AUTH_SERVICE_PROVIDER']; $auth_cred = $_SERVER['HTTP_X_VERIFY_CREDENTIALS_AUTHORIZATION']; $response =

[twitter-dev] Identifying HTTP Auth sites

2010-06-02 Thread Tim Nash
Just thinking about the 30h of June, is there anyway to pull the last x number of API requests and see if they were authenticated from Oauth/ basic. I have a fairly large number of projects some I know are using Oauth some are not, but all have 1 or 2 test accounts in common so if I could look at

[twitter-dev] Why Favstar's IP got blacklisted - monitor error rates

2010-05-30 Thread Tim Haines
(timeframes, which errors, 10 out of how many requests per second etc) and will post them in this thread when I know more - unless Twitter does themselves. Cheers, Tim.

[twitter-dev] If your IP gets blacklisted

2010-05-28 Thread Tim Haines
for is useless, and sometimes I'd get curl: (7) couldn't connect to host. If you'd like to see Twitter make a reasonable attempt to notify 3rd parties when they are blacklisted, please vote on this issue: http://code.google.com/p/twitter-api/issues/detail?id=1658 Cheers, Tim.

[twitter-dev] Re: New opt-in API features available today, May 26th: entities, retweets in timelines, custom oauth_callback schemes

2010-05-27 Thread Tim Acheson
Thank you for fixing the issue of retweets not being included in timeline data! I reported the issue as soon as it arose, when the retweet feature was first introduced, and have been monitoring the situation ever since: http://code.google.com/p/twitter-api/issues/detail?id=1312

[twitter-dev] Retweet count for status?

2010-05-03 Thread Tim Bull
to do this (short of executing a search for the specific tweet)? Cheers Tim

Re: [twitter-dev] Is there small size follow button?

2010-04-30 Thread Tim Haines
I'd consider using this if there was a small one available too. On Fri, Apr 30, 2010 at 12:12 PM, paloalto sungh...@gmail.com wrote: Follow button in @anywhere api is too large. Is there a way to choose a smaller size?

  1   2   3   >