[twitter-dev] Is this application breaking Twitter API standards?

2010-01-11 Thread Colin
explain to me how this online application is getting around these issues? Thanks Colin

[twitter-dev] posting twitter updates using oauth and java question

2010-04-23 Thread colin gray
Hello, I'm trying to post to the twitter update status api using oauth and I'm getting a 401 without any other error information. I'm posting to http://api.twitter.com/1/statuses/update.xml with a parameter of status="testing twitter!" and a access token and access secret generated by twitter/oaut

[twitter-dev] XML feed not loading as before - PHP

2010-07-06 Thread colin....@digital.fco.gov.uk
With the following feed/script: $twitter_url = "http://twitter.com/statuses/user_timeline/ britishabroad.xml?count=1"; $buffer = file_get_contents($twitter_url); $xml = new SimpleXMLElement($buffer); $status_item = $xml -> status; $status = $status_item -> text; echo $status; Nothing is being

[twitter-dev] Re: XML feed not loading as before - PHP

2010-07-07 Thread colin....@digital.fco.gov.uk
us = $status_item -> text; echo $status; Here is the link: http://demophon.fco.gov.uk/dashboard/test.php As I said, it was working before but not anymore. Would appreciate any help? Thx Colin On Jul 6, 5:09 pm, Taylor Singletary wrote: > Hi Colin, > > You're missing the a

[twitter-dev] Re: XML feed not loading as before - PHP

2010-07-07 Thread colin....@digital.fco.gov.uk
ary wrote: > Hi Colin, > > You're missing the api subdomain and version "1".. this should work for you > instead: > > http://api.twitter.com/1/statuses/user_timeline/britishabroad.xml?cou... > > Taylor > > On Tue, Jul 6, 2010 at 8:18 AM, colin

[twitter-dev] XML feed not loading as before - PHP

2010-07-07 Thread colin....@digital.fco.gov.uk
rs/ demophon/dashboard/test.php on line 5 Would appreciate any help. Thanks Colin

[twitter-dev] Re: XML format change???

2010-07-07 Thread colin....@digital.fco.gov.uk
I'm getting similar problems. With the use of simplexml_load_file, it loads other xml fine but not twitters!!! On Jul 7, 6:55 am, Pete wrote: > Did you change the XML format today our application which has worked > for a year reading XML data all of the sudden does not function > today?  Was the

[twitter-dev] nonce error when doing 'generated token' OAuth

2010-08-17 Thread Colin Hill
hen I went to roll it into our cron job this afternoon, authentication consistently fails. I wonder if anyone on the list has seen a similar change in behavior, and/or could offer some advice as to what might generate this error. Thanks. -- Colin

Re: [twitter-dev] nonce error when doing 'generated token' OAuth

2010-08-17 Thread Colin Hill
stricted subset of queries defined in the RFC? If that's the case, then the issue I've encountered here will only become more pervasive as more developers switch their implementations to OAuth over the next 13 days. This should be interesting... Thanks, Colin On 8/17/10 10:19 AM, Tom van

Re: [twitter-dev] nonce error when doing 'generated token' OAuth

2010-08-17 Thread Colin Hill
ools which among other things handles system clock syncing to the host server, which would have brought it in line with tock.usno.navy.mil and without that it was way off, so that was the issue. Once corrected, requests are succeeding once again. Thanks all for your help. -- Colin On 8/17/10 10:47

[twitter-dev] Are IDs globally unique? Or just unique for each object type?

2010-09-03 Thread Colin Howe
Are IDs globally unique? Or just unique for each object type? In other words, is it possible to have a user with the ID 7 and also a DM with the ID 7? -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhanc

[twitter-dev] Re: Are IDs globally unique? Or just unique for each object type?

2010-09-03 Thread Colin Howe
Cool. Thanks for the help :) On Sep 3, 2:16 pm, John Kalucki wrote: > Unique for each object type. > > On Fri, Sep 3, 2010 at 11:09 AM, Colin Howe > wrote: > > > > > Are IDs globally unique? Or just unique for each object type? > > > In other words, is it p

Re: [twitter-dev] Problems on production server with same code

2010-09-10 Thread Colin Hill
skew will result in nonce problems. -- Colin On 9/10/10 12:59 PM, Angelus wrote: > Hello, I'm migrating our current sistems that used old basic > authentication on twitter to OAuth and I'm having quite a problem. > > In our php projects I'm using a TwitterOAuth lib, ver

[twitter-dev] Response format details?

2010-10-11 Thread Colin Howe
_reply_to_[status| user]_id are populated and what they are populated with. Thanks, Colin -- 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/l

[twitter-dev] statuses/filter streaming api vs Gnip announcement

2010-11-17 Thread Colin Surprenant
options? Thanks, Colin -- 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 this group: http://groups.google.com

[twitter-dev] Re: statuses/filter streaming api vs Gnip announcement

2010-11-22 Thread Colin Surprenant
bump - anyone? On Nov 17, 4:16 pm, Colin Surprenant wrote: > Hi, > > - does the usage of the statuses/filter method on the streaming api > impacted by the Gnip announcement? > > - do we know the maximum rate (or approximation) allowed through the > statuses/filter method? (i

[twitter-dev] Re: language and geocode problem

2010-11-30 Thread Colin Surprenant
on a fix". See https://twitter.com/#!/twitterapi/status/9262744515645440 http://twitter.com/#!/twitterapi/status/9636345710379008 Colin On Nov 30, 8:27 am, mazz wrote: > Hi, > has somebody noticed that there are problems filtering the search with > language and geocode? > > T

[twitter-dev] should search and streaming apis return similar tweets for equivalent geolocation areas

2011-02-10 Thread Colin Surprenant
thin the bounding box) but the search API will preferentially use the Geotagging API, but will fall back to the Twitter profile location. Can this explain why I see much more results with the search API? Thanks, Colin -- Twitter developer documentation and resources: http://dev.twitter.com/doc

[twitter-dev] Re: should search and streaming apis return similar tweets for equivalent geolocation areas

2011-02-12 Thread Colin Surprenant
,-121.992630991336,38.0961869903135 which correspond to the bounding box around 37.736784, -122.44709, 40km. Why is there such huge difference and can we expect the streaming API to eventually match what the search API produces for geolocalized searches? Thanks, Colin On Feb 10, 5:32 pm, Colin Surprenant wrote: > Hi, &g

[twitter-dev] Re: should search and streaming apis return similar tweets for equivalent geolocation areas

2011-02-15 Thread Colin Surprenant
of a tweet? Thanks, Colin On Feb 14, 2:33 pm, Taylor Singletary wrote: > Hi Colin, > > You hit the nail on the head with this observation: > > > In the doc it says that the streaming API will only return tweets that > > are created using the Geotagging API (and with

[twitter-dev] Re: Streaming API vs. Search API: no API returns >95% of intented tweets

2011-02-15 Thread Colin Surprenant
or testing purposes both my poller and stream reader only output IDs so I can use cat, sort, uniq, wc and diff to compare results. Colin On Feb 15, 2:33 pm, Karussell wrote: > Hi John, hi Adam, > > thanks for your responses. > > > To increase recall, search sometimes include

[twitter-dev] Re: should search and streaming apis return similar tweets for equivalent geolocation areas

2011-02-15 Thread Colin Surprenant
I did ran tests on keyword search and found only very marginal differences between polling the search api and using the streaming api. I also followed up in your thread. Colin On Feb 15, 2:39 pm, Karussell wrote: > Hmmh, would you mind to test this without the geo location filter? > And

[twitter-dev] Re: should search and streaming apis return similar tweets for equivalent geolocation areas

2011-02-24 Thread Colin Surprenant
my context but it is not possible to get this using the streaming API. - Can we expect both methods to be supported in the future and can we expect to get a streaming version of what the search API does today? Thanks, Colin On Feb 15, 2:19 pm, Colin Surprenant wrote: > So basically today we h

[twitter-dev] Twitter API Timeouts

2011-02-28 Thread Colin Howe
Hi, We've started seeing the API drop a lot of our requests. No error, no response at all. Is this a known issue or is it a change I should have been aware of? Cheers, Colin -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter:

[twitter-dev] Re: Twitter API Timeouts

2011-02-28 Thread Colin Howe
Looks like it is working as normal again now... Horrid way to find out our internal poller has a 10 minute timeout on a request though :D On Feb 28, 7:30 pm, Marc Mims wrote: > * Taylor Singletary [110228 06:57]: > > > Thanks for the reports -- we're looking into the timeout issue. > > I've be

[twitter-dev] Re: Search API rate limit change?

2011-03-21 Thread Colin Surprenant
pausing for the specified "retry_after" delay we would immediately get repeated 420s at which point we started to assume our IPs were banned (which also contributed to increase the stress level). Colin On Mar 21, 9:12 am, Jeffrey Greenberg wrote: > Taylor, > Yeah this was definitely

[twitter-dev] Re: Streaming API Rate Limiting

2011-04-01 Thread Colin Surprenant
Twitter has reduced it somehow. I remember I read somewhere in the api doc that each bounding box could not be more than 1 degree square "enough to cover most metropolitan areas" - but I cannot find that back. Colin On Mar 31, 4:08 pm, Data Gatherer wrote: > We have a bounding bo

[twitter-dev] Re: Streaming API Rate Limiting

2011-04-01 Thread Colin Surprenant
for the whole US seems small. Colin On Apr 1, 2:40 pm, Augusto Santos wrote: > Sorry Colin, but where did you get this information? Doesn't match with the > reality. Not at all. > > On Fri, Apr 1, 2011 at 12:35 PM, Colin Surprenant < > > > > > > > > > >

[twitter-dev] How to get retweets of me

2011-07-07 Thread Colin Howe
f the original tweet was created more than 20 tweets ago. Are there any other ways to do this? Cheers, Colin -- 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/