[twitter-dev] Annotations

2011-06-22 Thread Rob
When will annotations going to be returned via the REST api ? Or are
they  already?  If the latter, what flag (e.g. ?
include_annotations=1) is required?

-- 
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/#!forum/twitter-development-talk


[twitter-dev] Recipe for getting Follow button working on an https website?

2011-06-19 Thread Rob
I'm trying to add a follow or tweet button to a site that uses https
by default.

My choices appear to be scare my users with a "insecure content on
page" or, if I change the url to https://platform.twitter.com/, an
"invalid certificate" error.

Is there an easy recipe for this?  Google reveals hacks like copy
everything local.

Why doesn't https://platform.twitter.com/ have a valid certificate?

-- 
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/#!forum/twitter-development-talk


Re: [twitter-dev] Rate limiting - per user or per application key?

2011-05-31 Thread Rob Wilson
Perfect - thanks Tom.

On 31 May 2011 13:39, Tom van der Woerdt  wrote:

>  Per user per application.
>
> A user can use, for example, 350 requests with TweetDeck, and then it can
> still use 350 requests with your application, without interfering with other
> users that also use your application.
>
> Tom
>
>
>
> On 5/31/11 2:37 PM, Rob Wilson wrote:
>
> Hi,
>
> I am writing an iPhone application that uses the Twitter API, using oAuth.
> Could you please clarify that the 350 requests per hour are tied to the
> logged in user and not the application key?
>
> If not, do I need to white-list to prevent this becoming a problem?
>
> Cheers,
> Rob.
>
>
> --
>
>
> Please visit...
>
> SpikyOrange.co.uk <http://spikyorange.co.uk/> A portal for anything I
> create, including...
>
>  BitBanter.com <http://bitbanter.com/> A technical podcast 50% Tech + 50%
> software development = 100% Entertaining!
>
>
>
>  <http://spikyorange.co.uk/>
> --
> 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/#!forum/twitter-development-talk
>
>
>  --
> 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/#!forum/twitter-development-talk
>



-- 


Please visit...

SpikyOrange.co.uk <http://spikyorange.co.uk/> A portal for anything I
create, including...

BitBanter.com <http://bitbanter.com/> A technical podcast 50% Tech + 50%
software development = 100% Entertaining!



<http://spikyorange.co.uk/>

-- 
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/#!forum/twitter-development-talk


[twitter-dev] Rate limiting - per user or per application key?

2011-05-31 Thread Rob Wilson
Hi,

I am writing an iPhone application that uses the Twitter API, using oAuth.
Could you please clarify that the 350 requests per hour are tied to the
logged in user and not the application key?

If not, do I need to white-list to prevent this becoming a problem?

Cheers,
Rob.


-- 


Please visit...

SpikyOrange.co.uk <http://spikyorange.co.uk/> A portal for anything I
create, including...

BitBanter.com <http://bitbanter.com/> A technical podcast 50% Tech + 50%
software development = 100% Entertaining!



<http://spikyorange.co.uk/>

-- 
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/#!forum/twitter-development-talk


[twitter-dev] Re: consistency and ecosystem opportunities

2011-03-15 Thread Rob Aldred
I agree, this is very short sighted of them to assume theirs some how 
better, or all people need.
I hate the Mac official client, they've bought Tweetie and made it worse, 
they've removed features and added a raft of bugs.
I use the original Tweetie on Mac and Seesmic on my Android.

Thankfully there are some decent programmers out there.

-- 
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/group/twitter-development-talk


Re: [twitter-dev] Request hometimeline with COUNT=1 returns 20-30 tweets.

2011-03-09 Thread Rob Wilson
Hi,

If you go to http://dev.twitter.com/console and choose
statuses/home_timeline.json, then type count in the parameter field
then 1 in the parameter value field, the result is many tweets,  not
one.

The 'request' tab doesn't show the parameter anywhere, I also tried
added three other parameters and they don't show up... should they?...

opening connection to api.local.twitter.com...
opened
<- "GET /1/statuses/home_timeline.json HTTP/1.1
Accept: */*
Connection: close
User-Agent: OAuth gem v0.3.4.1
Authorization: OAuth oauth_nonce=\"xxx\",
oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1299691694\",
oauth_consumer_key=\"xxx\", oauth_token=\"xxx\",
oauth_signature=\"xxx\", oauth_version=\"1.0\"
Host: api.local.twitter.com:9000

My iphone application uses MGTwitterEngine and the variables indicate...

Request https://twitter.com/statuses/friends_timeline.xml

parameters (objective C dictionary - this will be mapped to paramters
in the request somewhere in their API)

"{
count = 1;
}"

Cheers,
Rob.


On 9 March 2011 06:52, Matt Harris  wrote:
> Hey Rob,
> Can you share the exact URL you are requesting. When I use the count
> parameter with a value of 1 I only get 1 tweet back. The URL I am requesting
> looks like this:
>     https://api.twitter.com/1/statuses/home_timeline.json?count=1
> Best,
> @themattharris
> Developer Advocate, Twitter
> http://twitter.com/themattharris
>
>
> On Tue, Mar 8, 2011 at 10:45 PM, Rob Wilson  wrote:
>>
>> Hi,
>>
>> When my application first starts up, I want to display only the very
>> last tweet, so I ask for the timeline with the COUNT parameter set to
>> 1, oddly I then receive say 20-30 tweets.
>>
>> I then plan to periodically ask for any new tweets since the highest
>> ID last returned, then keep repeating the request for new tweets.
>>
>> Why do I receive more than one tweet in the return?  If I set it to 20
>> or 30, I still get the same size XML returned.  I've tried it with a
>> PAGE=1, but that didn't seem to make any difference.  The API
>> documentation implies that this should all be okay; it should return x
>> tweets.
>>
>> Thanks,
>> Rob.
>>
>> --
>>
>>
>> Please visit...
>>
>> SpikyOrange.co.uk A portal for anything I create, including...
>>
>> BitBanter.com A technical podcast 50% Tech + 50% software development
>> = 100% Entertaining!
>>
>> --
>> 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/group/twitter-development-talk
>
> --
> 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/group/twitter-development-talk
>



-- 


Please visit...

SpikyOrange.co.uk A portal for anything I create, including...

BitBanter.com A technical podcast 50% Tech + 50% software development
= 100% Entertaining!

-- 
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/group/twitter-development-talk


[twitter-dev] Request hometimeline with COUNT=1 returns 20-30 tweets.

2011-03-08 Thread Rob Wilson
Hi,

When my application first starts up, I want to display only the very
last tweet, so I ask for the timeline with the COUNT parameter set to
1, oddly I then receive say 20-30 tweets.

I then plan to periodically ask for any new tweets since the highest
ID last returned, then keep repeating the request for new tweets.

Why do I receive more than one tweet in the return?  If I set it to 20
or 30, I still get the same size XML returned.  I've tried it with a
PAGE=1, but that didn't seem to make any difference.  The API
documentation implies that this should all be okay; it should return x
tweets.

Thanks,
Rob.

-- 


Please visit...

SpikyOrange.co.uk A portal for anything I create, including...

BitBanter.com A technical podcast 50% Tech + 50% software development
= 100% Entertaining!

-- 
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/group/twitter-development-talk


[twitter-dev] iPhone - application or web? What URL if web?

2011-01-24 Thread Rob Wilson
Hi,

When I registered my application with Twitter, I was asked whether it was an
application, or website.  The latter required a URL callback.

I tried to select website with 'oob' as the callback URL (as seen in the
documentation notes), but the registration form rejected oob as an invalid
callback URL (seems fair enough - it's not a URL).

I'm left wondering, are iPhones apps to be registered as application or web?
 If the latter, what URL should be used?

Cheers,
Rob.


-- 


Please visit...

SpikyOrange.co.uk <http://spikyorange.co.uk/> A portal for anything I
create, including...

BitBanter.com <http://bitbanter.com/> A technical podcast 50% Tech + 50%
software development = 100% Entertaining!



<http://spikyorange.co.uk/>

-- 
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/group/twitter-development-talk


Re: [twitter-dev] Re: Use of OAuth in Xcode to use twitter API

2011-01-19 Thread Rob Gmail
If it's a recorded screencast that you want to deliver, over the web, then 
camtasia is your solution - to record and annotate your screen with voice, 
annotations, chapters.

If you want a live conference with up to 1000 viewers, try goToWebinar.

Both will work very well, however one is more dynamic and offers instant 
feedback.

Or do both :)





Sent from my iPhone

On 20 Jan 2011, at 01:33, Bess  wrote:

> Our publisher is Pearson under "Sams Teach Yourself Twitter API in 24
> Hours". I'll look into how to create webcast. Do you suggest any tool?
> 
> On Jan 19, 1:32 pm, Rob Wilson  wrote:
>> Hi Sangeeta,
>> 
>> I'm really needing this information now - I don't suppose there's an early
>> release scheme with your publisher (like Manning MEAP?).
>> 
>> If not, do you have any blogs to assist?
>> 
>> Good luck on the book.
>> 
>> Rob.
>> 
>> On 18 January 2011 02:12, Bess  wrote:
>> 
>> 
>> 
>>> You need to use OAuth library to store and pass OAuth Consumer Key &
>>> Consumer Secret. Our book Twitter API on iOS SDK will be coming out in
>>> a few months in summer. I am planning to teach Twitter iOS class soon
>>> until I find a venue to support it.
>> 
>>> On Jan 16, 10:06 pm, sangeeta katvate  wrote:
>>>> Hello,
>> 
>>>> For using OAuth consumer key, consumer secret etc. do we have to use
>>> OAuth
>>>> Library.
>>>> If so, then from where can i get this library.
>> 
>>>> From
>>>> Sangeeta
>> 
>>> --
>>> 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/group/twitter-development-talk
>> 
>> --
>> 
>> Please visit...
>> 
>> SpikyOrange.co.uk <http://spikyorange.co.uk/> A portal for anything I
>> create, including...
>> 
>> BitBanter.com <http://bitbanter.com/> A technical podcast 50% Tech + 50%
>> software development = 100% Entertaining!
>> 
>> <http://spikyorange.co.uk/>
> 
> -- 
> 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/group/twitter-development-talk

-- 
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/group/twitter-development-talk


Re: [twitter-dev] Re: Use of OAuth in Xcode to use twitter API

2011-01-19 Thread Rob Wilson
Hi Sangeeta,

I'm really needing this information now - I don't suppose there's an early
release scheme with your publisher (like Manning MEAP?).

If not, do you have any blogs to assist?

Good luck on the book.

Rob.


On 18 January 2011 02:12, Bess  wrote:

> You need to use OAuth library to store and pass OAuth Consumer Key &
> Consumer Secret. Our book Twitter API on iOS SDK will be coming out in
> a few months in summer. I am planning to teach Twitter iOS class soon
> until I find a venue to support it.
>
> On Jan 16, 10:06 pm, sangeeta katvate  wrote:
> > Hello,
> >
> > For using OAuth consumer key, consumer secret etc. do we have to use
> OAuth
> > Library.
> > If so, then from where can i get this library.
> >
> > From
> > Sangeeta
>
> --
> 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/group/twitter-development-talk
>



-- 


Please visit...

SpikyOrange.co.uk <http://spikyorange.co.uk/> A portal for anything I
create, including...

BitBanter.com <http://bitbanter.com/> A technical podcast 50% Tech + 50%
software development = 100% Entertaining!



<http://spikyorange.co.uk/>

-- 
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/group/twitter-development-talk


Re: [twitter-dev] Re: iPhone twitter client

2011-01-17 Thread Rob Gmail
Sounds like you would be better off considering goToWebinar, you could charge 
via paypal and only expose the URL to those who paid.

I would be interested, but within the next week or so I would hope to have 
cracked it, so if you could do a webinar  very soon, you have an interested 
person in your queue ;)

You could join me in a podcast interview to detail your book, plus any other 
projects that your working on?

Good luck!
Rob

Sent from my iPhone

On 18 Jan 2011, at 02:08, Bess  wrote:

> Welcome to Twitter OAuth Camp for mobile.
> 
> I have written 4 chapters to explain how to integrate Twitter on iOS &
> Android using OAuth library. I can't release the chapters now as our
> publisher is reviewing the content and getting it ready to publish the
> book in a short few months. The book will be released in early summer.
> It contains very details step-to-step explanation, screen captures,
> line by line coaching, code examples.
> 
> I think this is the greatest thing b/c these chapters will help me to
> remember how to fight thru each step to get this to work.
> 
> I am teaching iOS class. I am planning to teach Twitter iOS class and
> going to offer a class in a few weeks. The problem I have is I
> couldn't find a venue. I couldn't find any ideal dates at Hackerdojo.
> Plug N Play doesn't offer WiFi and/or available dates. Access Growth
> doesn't offer the venue as I haven't shown enough muscle.
> 
> Any suggestions?
> 
> On Jan 16, 2:01 pm, Rob Wilson - SpikyOrange 
> wrote:
>> Hi,
>> 
>> I'm planning on integrating with Twitter on the iPhone, I'm surprised
>> that unlike Facebook, Twitter does not provide a standard Objective-C
>> library, but I have found MGTwitterEngine.
>> 
>> The problem is, the setup instructions are not that clear, then I
>> found 'by accident' the Twitter-OAuth-iPhone project on GitHub, which
>> seemed to at least bring up the Twitter authorisation page, but now
>> fails with 401 errors and doesn't give me the opportunity to remove
>> the token (hey, it's just a demo project, so I guess they don't handle
>> it).
>> 
>> The concern I have, is that when I registered my application, it
>> wanted a callback URL, from what I understand I want the value "OOB"
>> to be used, for our-of-band / Pin-code authorisation.  I tried
>> entering OOB and then it complained that I must enter a valid URL.
>> 
>> I then deleted the URL completely and then the application was
>> accepted, but I don't know whether a blank / missing URL == OOB?
>> 
>> When I try to edit the application, it doesn't give me the option to
>> add a URL.
>> 
>> So, when programming for an iPhone, do you enter 'Application', or
>> 'Web'.  If the latter, what URL should be entered and can you edit it
>> afterwards?
>> 
>> Does anyone have advice on setting up MGTwitterEngine, or Twitter-
>> OAuth-iPhone?
>> 
>> For something that 'sounds' simple, it has taken me over a day of
>> playing to get nowhere productive.  However, I am new to iPhone
>> develop, oAuth and the libraries mentioned above.
>> 
>> I am planning on documenting what I learn on my blog afterwards, to
>> help other iPhone developers.  Feel free to follow me on Twitter, as I
>> disucss the progress on my podcast BitBanterPC.
>> 
>> Many thanks to anyone who can answer those questions.
>> 
>> Regards,
>> Rob.
> 
> -- 
> 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/group/twitter-development-talk

-- 
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/group/twitter-development-talk


[twitter-dev] iPhone twitter client

2011-01-16 Thread Rob Wilson - SpikyOrange
Hi,

I'm planning on integrating with Twitter on the iPhone, I'm surprised
that unlike Facebook, Twitter does not provide a standard Objective-C
library, but I have found MGTwitterEngine.

The problem is, the setup instructions are not that clear, then I
found 'by accident' the Twitter-OAuth-iPhone project on GitHub, which
seemed to at least bring up the Twitter authorisation page, but now
fails with 401 errors and doesn't give me the opportunity to remove
the token (hey, it's just a demo project, so I guess they don't handle
it).

The concern I have, is that when I registered my application, it
wanted a callback URL, from what I understand I want the value "OOB"
to be used, for our-of-band / Pin-code authorisation.  I tried
entering OOB and then it complained that I must enter a valid URL.

I then deleted the URL completely and then the application was
accepted, but I don't know whether a blank / missing URL == OOB?

When I try to edit the application, it doesn't give me the option to
add a URL.

So, when programming for an iPhone, do you enter 'Application', or
'Web'.  If the latter, what URL should be entered and can you edit it
afterwards?

Does anyone have advice on setting up MGTwitterEngine, or Twitter-
OAuth-iPhone?

For something that 'sounds' simple, it has taken me over a day of
playing to get nowhere productive.  However, I am new to iPhone
develop, oAuth and the libraries mentioned above.

I am planning on documenting what I learn on my blog afterwards, to
help other iPhone developers.  Feel free to follow me on Twitter, as I
disucss the progress on my podcast BitBanterPC.

Many thanks to anyone who can answer those questions.

Regards,
Rob.

-- 
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/group/twitter-development-talk


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

2010-11-22 Thread Rob
To add to Matt's comment - we at Gnip haven't yet announced a coverage-
based product that mimics Twitter's stream.twitter.com/statuses/
filter, but stay tuned (http://twitter.com/gnip).  We'll be announcing
several new firehose-based products in the near future as soon as we
bring them online.

Any nondisplay companies or developers who want to participate in the
private beta period of our new commercial Twitter products are
welcomed to drop us a note at i...@gnip.com.

- Rob Johnson

On Nov 22, 1:06 pm, Matt Harris  wrote:
> Hi Colin,
>
> I've answered your questions inline:
>
> * does the usage of the statuses/filter method on the streaming api impacted
> by the Gnip announcement?
>
> Quoting Ryan Sarver. "Our default levels like Spritzer, Follow and Track
> will not be changing, and will remain free and available directly from
> Twitter."
>
> * do we know the maximum rate (or approximation) allowed through
> the statuses/filter method? (incidentally, at which point in terms of ratewe
> have to consider firehosing, therefore, Gnip options?
>
> The limits of the free APIs are documented on:
>    http://dev.twitter.com/pages/streaming_api
>
> If you need elevated access to the Streams for analysis or
> non-display products you should work with Gnip to find the right data
> product for your needs.
>
> Best,
> Matt

-- 
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/group/twitter-development-talk


[twitter-dev] Search API not returning tweet

2010-08-26 Thread Rob Lee
I'm trying to understand why this query doesn't return a tweet :

http://search.twitter.com/search.json?q=%23tea%20from:jamesb%20from:frankieroberto%20from:andrewpendrick%20from:monkeyhelpr%20from:topfife

But this one does :

http://search.twitter.com/search.json?q=%23tea%20from:jamesb%20from:frankieroberto%20from:andrewpendrick%20from:monkeyhelpr%20from:urbanwide

The only difference seems to be changing the from:topfife account to
from:urbanwide, the returned tweet is from the monkeyhelpr account, so
changing the final from:account shouldn't make a difference as far as
I'm aware.

-- 
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/group/twitter-development-talk?hl=en


[twitter-dev] Re: oAuth for server-side applications

2010-06-17 Thread Rob

Sheesh, digests are always such a PITA.  I wrote my own HTTP/DIGEST
auth routine once and what a pain to wade through the RFC and try to
get coding to work.  I'd really like NOT to have to do that, BUT, I
want to be articulate enough (code-wise) so I'm not just blindly
relying on someone's library.

So, for the single token solution, I would:

-- for each Twitter account with server-side access, I register "my-
server-side-app" at dev.twitter.com/..., obtaining the Access Token
(oauth_token) and Access Token Secret (oauth_token_secret);

-- somehow, I plug token/secret into my HTTP request; I'm OK with
using the HTTP Authorization header:
(example from: 
http://hueniverse.com/2008/10/beginners-guide-to-oauth-part-iv-signing-requests/)
-
GET /photos?size=original&file=vacation.jpg HTTP/1.1
Host: photos.example.net:80
Authorization: OAuth realm="http://photos.example.net/photos";,
oauth_consumer_key="dpf43f3p2l4k3l03", oauth_token="nnch734d00sl2jdk",
oauth_nonce="kllo9940pd9333jh", oauth_timestamp="1191242096",
oauth_signature_method="HMAC-SHA1", oauth_version="1.0",
oauth_signature="tR3%2BTy81lMeYAr%2FFid0kMTYa%2FWM%3D"
-
oauth_consumer_key - check! (supplied by Twitter app registration
info)
oauth_token - check! (supplied by Twitter "my access token")

leaving me without a oauth_nonce or oauth_signature.


So, again, I ask (anyone) for some (fairly) LOW-LEVEL example Java
code; I'd like to know the lower-level coding mechanics WITHOUT
becoming married to the RFC AND not having to wade through someone's
framework.  Like Joe Friday used to say, "Just the facts..."

Thanks.






[twitter-dev] Re: oAuth for server-side applications

2010-06-16 Thread Rob

I'm working (more or less) in Java. I'm planning to start picking
through the Scribe library to see the flow.


The flow (http://dev.twitter.com/images/dev/oauth_diagram.png) makes
sense.  What I'm having difficulty with is mapping the pieces of that
diagram to the single token solution.  What steps from the diagram
(and in what sequence) apply to the STS?

Also, in the case of server-side accesses, what is the mapping of
Twitter "application registrations" to Twitter IDs?  One app's
registration can access multiple Twitter IDs (concurrently) or is it
one app/reg per TwID?



[twitter-dev] Re: oAuth for server-side applications

2010-06-16 Thread Rob

Taylor,

Thanks for the bootstrap info.  Now, is there a soup-to-nuts CODING
example somewhere?.



[twitter-dev] oAuth for server-side applications

2010-06-16 Thread Rob
Okay, I'm totally confused with Twitter's move to drop HTTP BASIC
authorization.

My problem is with a set of Twitter accounts that are primarily
accessed PROGRAMATICALLY by server-side processes; there is no
"client" per se, or rather, the server process IS the client.  For
example, an automated process that periodically sends status tweets.
The programming currently uses the API with BASIC authentication (via
HTTPS).  I am a loss as to how OAuth is applied in this situation.

A clearly expressed example would be greatly appreciated.



[twitter-dev] V2-roadmap access

2010-06-15 Thread Rob
I've seen many references to http://apiwiki.twitter.com/V2-Roadmap,
particularly with regards to a current api issue I have (accepting
pending follow requests on protected accounts) but when I go to that
page I get a mostly empty page that just says "You don't have
permission to look at V2 Roadmap."  Is that intentional and if so is
there some place I can go to request access?  I don't see any obvious
way to signup and login into the necessary workspace on pbwiki.


[twitter-dev] /filter question

2010-03-22 Thread rob
Quick question:

When consuming the Streaming API on the "Filter" endpoint can you
provide both the "track" and "follow" predicates?

ex: ?track=foo&follow=1234566

We would like to have a single user with elevated access for both the
"track" and "follow" roles and utilize a single connection.

Thanks,

Rob

To unsubscribe from this group, send email to 
twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
with the words "REMOVE ME" as the subject.


[twitter-dev] Streaming API question

2010-02-19 Thread rob
Has anyone else ran into an issue where over time the Streaming API
just stops sending results?

We are using a Ruby library to connect (twitter-stream) which uses
EventMachine to open a persistent connection to the API (we are
tracking and following).

The library properly handles reconnection (from dropped connections)
and the various error conditions.

All works well for a period of time (8+ hours in some cases, sometimes
a full day)  after that the connection does no get dropped but no data
gets sent. (At least that's what is seems as EventMachine feels its
still connected)

If we just drop the connection and reconnect all is well and the data
starts to flow again. (Which we could do but that seems like a hack)

Anyone else have this issue or should I dive into the EventMachine
code and see if there is an issue in there?

Thanks in advance,

Rob








[twitter-dev] Getting Replies to A Message

2010-01-20 Thread rob
Hello,

Questions regarding how to get replies to a tweet

What is the recommended way to do this properly?

A few things I have tried

{I am aware that there is no current way to use the search API and
grab all responses to a tweet (i.e by reply_to_status_id) [bummer].}

1. The search API using a "to:someUser&since_id=
[theIdOfTweetIAmWatching]": this does not work since I have no
reply_to_status_id in the results to match up with.

2. API --> home_timeline: Requires the credentials for the user who
created the tweet [Which I may or may not have]

3. API --> user_timeline with the user_id from the tweet I am
watching: this does not include the tweets to the user

4. Cheat and have twitter to the work
http://search.twitter.com/search/thread/[theIdOfTweetIAmWatching] :
does not seem to support JSON or anything other than HTML or ATOM

5. Searched the list :)

I am just trying to get a handle on how to take a tweet that I get in
via a stream and go look [poll] for replies.

It seems I would need to follow the user using the streaming API and
match based on the in_reply_to_status_id but that would get quite out
of hand due to incoming tweet volume [i.e would need to follow a large
amount of users that may or may not ever produce a valid reply].

Thanks in advance,

Rob







[twitter-dev] Re: Favourites/create API: getting "This method requires a POST"

2009-09-18 Thread Rob Hutten

Yep, that did the trick.  Thanks, Abraham.  I'll look into updating
the example on the API wiki.

Cheers,
-Rob

On Sep 17, 2:21 pm, Abraham Williams <4bra...@gmail.com> wrote:
> That cURL command is resulting in a GET when a POST is required. Try adding
> -d with an empty string.
> curl -u x:yy -d ""http://twitter.com/favorites/create/4053701763.xml
>


[twitter-dev] Favourites/create API: getting "This method requires a POST"

2009-09-17 Thread Rob Hutten

Hi,

Has something changed with the favourites API?  Using an example
straight from the documentation:

% curl -u x:yy  http://twitter.com/favorites/create/4053701763.xml


  /favorites/create/4053701763.xml
  This method requires a POST.

%

Or am I missing something obvious?

Cheers,
-Rob



[twitter-dev] Re: Alert: "Twitpocalypse II" coming Friday, September 11th - make sure you can handle large status IDs!

2009-09-09 Thread Rob Ashton
I've always just stored as 64bit integers, I'd assumed that 32bit wouldn't be 
enough.

Now, if it goes above 64bit then I'm screwed, because neither my language or 
database have built in support for that! :P



From: JDG 
Sent: Thursday, September 10, 2009 4:21 AM
To: twitter-development-talk@googlegroups.com 
Subject: [twitter-dev] Re: Alert: "Twitpocalypse II" coming Friday, September 
11th - make sure you can handle large status IDs!


if you were on signed32 you'd have had a problem a long time ago. not quite 
sure why people haven't just taken to treating/storing as strings -- sure 
there's a bit more overhead mem/storage-wise, but you don't have to change your 
code every few months.


On Wed, Sep 9, 2009 at 16:45, Joseph Cheek  wrote:


  Twitter is in league with Al Qaida!  You heard it first here, folks!

  Ok, seriously, this message I wrote wasn't worth the electrons it took
  to transmit it...  let's see if I can increase the s2n ratio:

  4294967296, that an unsigned 32-bit int?  ok, fair enough.  i know some
  of my apps use signed 64bit ints, but i'm not sure about the db... will
  need to check... might be signed32...

  Joseph Cheek
  jos...@cheek.com, www.cheek.com
  twitter: http://twitter.com/cheekdotcom




  Nicholas Moline wrote:
  > And nobody thought about the significance of accelerating anything
  > called a *pocolypse to be on the anniversary of a date that thousands
  > died in a terrorist attack Tactful Twitter... Real Tactful
  >
  > On Wed, Sep 9, 2009 at 1:00 PM, Alex Payne  > wrote:
  >
  >
  > Sorry, an error in phrasing. It was previously mentioned that this
  > change was pending. We had not previously announced a date for the
  > change.
  >
  > Normally, we prefer to provide more advance notice where possible, but
  > I'm letting you all know immediately after our operations team
  > informed me that it was necessary to make this change on Friday.
  >
  > On Wed, Sep 9, 2009 at 12:13, Hwee-Boon Yar > wrote:
  > >
  > > May I know when and where was it mentioned that it will be
  > > artificially increased this coming Friday?
  > >
  > > --
  > > Hwee-Boon
  > >
  > > On Sep 10, 2:49 am, Alex Payne  > wrote:
  > >> As mentioned previously, the Twitter operations team
  > willartificially
  > >> increase the maximum status ID to 4294967296 this coming Friday,
  > >> September 11th. This action is part of routine database
  > upgrades and
  > >> maintenance.
  > >>
  > >> If your Twitter API application stores status IDs, please be
  > sure that
  > >> your datastore is configured to handle integers of that size.
  > Thanks.
  > >>
  > >> --
  > >> Alex Payne - Platform Lead, Twitter, Inc.http://twitter.com/al3x
  > >
  >
  >
  >
  > --
  > Alex Payne - Platform Lead, Twitter, Inc.
  > http://twitter.com/al3x
  >
  >




-- 
Internets. Serious business.


[twitter-dev] Re: Keep getting "Invalid / used nonce", even with new nonce

2009-08-26 Thread Rob O'Brien

I haven't fully read through this thread, but I'd like to throw in my help.

I ran into the same problem (at least the same error) recently and
discovered that the server's system time was incorrect (by about 3 hours).
In some obscure documentation, I found that the timestamp must be within 5
minutes of real time in order for the nonce to be accepted. 

Check your system time, adjust if necessary, and try again. Give it a shot.

Rob
  
  
 

-Original Message-
From: twitter-development-talk@googlegroups.com
[mailto:twitter-development-t...@googlegroups.com] On Behalf Of Chad Etzel
Sent: Wednesday, August 26, 2009 7:15 PM
To: twitter-development-talk@googlegroups.com
Subject: [twitter-dev] Re: Keep getting "Invalid / used nonce", even with
new nonce


Hi Jason,

The API endpoint and all other parameters sent with the request would
be helpful.

Thanks,
-Chad

On Wed, Aug 26, 2009 at 7:15 PM, Jason Martin wrote:
>
> Aright, here's one set of request/response headers:
>
> Request:
> {
>    Authorization = "OAuth realm='',
> oauth_consumer_key='tJdfiGin0BMT7Qugbj787g',
> oauth_signature_method='HMAC-SHA1',
> oauth_signature='J%2BgLcaHUvLolHv2eZdpDJWSzumM%3D',
> oauth_timestamp='1251325616',
> oauth_nonce='83a0141dd608569dc22b037e3b5fbe606ebd845f',
> oauth_version='1.0'";
> }
>
> Response:
> {
>    "Cache-Control" = "no-cache, max-age=300";
>    Connection = close;
>    "Content-Encoding" = gzip;
>    "Content-Length" = 88;
>    "Content-Type" = "application/json; charset=utf-8";
>    Date = "Wed, 26 Aug 2009 22:26:58 GMT";
>    Expires = "Wed, 26 Aug 2009 22:31:58 GMT";
>    Server = hi;
>    "Set-Cookie" =
>
"_twitter_sess=BAh7ByIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%
250ASGFzaHsABjoKQHVzZWR7ADoHaWQiJWEzYzdlN2I5NzhhMmVjZGI1YWVjYTU4%250AODgxYjc
5YmE2--64d7889886ab87d71ab67936215e1d51fcb99de9;
> domain=.twitter.com; path=/";
>    Status = "401 Unauthorized";
>    Vary = "Accept-Encoding";
>    "Www-Authenticate" = "Basic realm='Twitter API'";
> }
>
> And the response body:
>
> {"request":"/statuses/replies.json","error":"Invalid / used nonce"}
>
> Lemme know if you need anything else.
>
>  - Jason
>
> On Aug 26, 2009, at 6:05 PM, Chad Etzel wrote:
>
>>
>> The request/response headers specifically, but the more info the better
>> usually.
>> -Chad
>>
>> On Wed, Aug 26, 2009 at 5:58 PM, Jason Martin
wrote:
>>>
>>> Anything specific you need to look at? Or do just want me to just paste
>>> in
>>> what's been sent  and what's been received?
>>>
>>>  - Jason
>>>
>>> On Aug 26, 2009, at 5:46 PM, Chad Etzel wrote:
>>>
>>>>
>>>> Hi Jason,
>>>>
>>>> If you have traces of the HTTP request/responses that will help
>>>> diagnose what is going on.
>>>>
>>>> -Chad
>>>>
>>>> On Wed, Aug 26, 2009 at 12:51 PM, Jason Martin
>>>> wrote:
>>>>>
>>>>> I'm always getting the "Invalid / used nonce" error, even though I am
>>>>> providing a new nonce. I am 100% sure my code works, because if I
>>>>> remove my user cache, and the screen pops up to log into Twitter, then
>>>>> I immediately go to the user's timeline in my app, and everything
>>>>> loads: followed timeline, mentions, and DMs. However, when I close my
>>>>> app, and relaunch it, and go back the user's timeline again (same
>>>>> things are loaded: followed timeline, mentions, and DMs), but I get
>>>>> that "Invalid / user nonce" error. If my method of creating a nonce
>>>>> isn't always going to give me an unused one, what will? I'm currently
>>>>> encrypting a UUID I get from the iPhone OS, and I've tried encrypting
>>>>> the current time in seconds. Any other methods I should be trying?
>>>>>
>>>>>  - Jason
>>>>>
>>>
>>>
>
>



[twitter-dev] Invalid / used nonce

2009-08-12 Thread Rob O'Brien

The interesting thing with my situation is that I'm still in development, so
there's only a single person (me) hitting the app. Further, I'm only
attempting a single call to Twitter.

Also, I get a 401 on everything that requires authentication, but not on
something like a rateLimitStatus check.

Further, a call to /followers/ids.xml *works* on my local dev box, but not
on the production server. The only difference I can think of would be IP
address. 

I've been able to trace 3 separate requests being generated by Twitter4J and
here are the values:

[Wed Aug 12 10:19:56 PDT 2009]
oauth_timestamp="1250097596",oauth_nonce="329444963"

[Wed Aug 12 10:20:20 PDT 2009]
oauth_timestamp="1250097620",oauth_nonce="173112023"

[Wed Aug 12 10:24:39 PDT 2009]
oauth_timestamp="1250097879",oauth_nonce="3202768030"

Each timestamp is larger than the last and each nonce is unique.

Knowing that my values are legit makes me think there's another problem, but
Twitter hasn't responded to my api@ email.

Rob O'Brien
Web Application Developer & Consultant
r...@zepoid.com
  
 
-Original Message-
From: twitter-development-talk@googlegroups.com
[mailto:twitter-development-t...@googlegroups.com] On Behalf Of Zaudio
Sent: Tuesday, August 11, 2009 12:04 PM
To: Twitter Development Talk
Subject: [twitter-dev] Re: Invalid / used nonce


We're having the same issue in our app, occurs sporadically in our
logs - but I believe the cause with us is that:

We're generating nonce values as a timestamp seeded sequence of random
numbers
We're creating an instance of the Oauth class that does this for each
logged in user for the app

Thus, for a single timestamp, it IS possible that the time seeded
nonce values are the same

So - corrrective action being trialled: I'm prefixing the 'random'
nonce value with the userID stripped from the start of the token,
padded to a fixed length of chars... this should guarantee then that
the nonce/timestamp combo is indeed unique for every request made from
our app 


Simon

On Aug 11, 6:45 am, Dan Borthwick  wrote:
> For our app, we successfully call request_token from our server. When
> we then call statuses/update from the client, we get a 401 'Invalid /
> usednonce' response. If the request_token call comes directly from
> the client, the update call succeeds.
>
> The nonces have been sanity checked and are definitely different for
> each call. GET requests to users/show succeed regardless of whether
> the request_token comes from the proxy server or client. Code is based
> on MGTwitterEngine-1.0.8-OAuth.
>
> The same code was working ok prior to the recent DoS downtime. Perhaps
> something has been changed on Twitter's side that might result in the
> 401 response?
>
> On Aug 11, 8:38 am, graceawalker  wrote:
>
>
>
> > No, mynonceis definately new every time. Surely if there was
> > something wrong with the way it was being generated it would error
> > during requestToken/accessToken/VerifyCredentials too?? All the code
> > ive looked through is doing it exactly the same way. Is the 'status'
> > parameter being used just like all the oauth parameters? is an
> > 'invalidnonce' error, definately an invalidnonceor could it be to
> > do with the timestamp and timezones. Clutching at straws here...
>
> > On Aug 11, 3:12 am, Chris Babcock  wrote:
>
> > > On Mon, 10 Aug 2009 04:14:43 -0700 (PDT)
>
> > > graceawalker  wrote:
> > > > I am calling and getting the whole way up to getting the access
token
> > > > just fine in my app (one im writing myself in c#), but when i try
and
> > > > call the update status URL im getting an 'Invalid/usednonce' error
in
> > > > my response data. Im not sure why this is, im calling the update
> > > > method in the exact same way that i called request token apart from
> > > > the new 'status' parameter in the query string. I call 'verify
> > > > credentials' with my access token to ensure that it is working and
it
> > > > sends me back all of the correct data, but it is erroring when
trying
> > > > to update my status. Is there any obvious solution to this, or am i
> > > > not supposed to be signing and organising the parameters in the same
> > > > way that i did before? Im really stuck here guys and need help!
>
> > > Right, thenonceis a "number used once". Its purpose is to prevent
> > > replay attacks. If you use the samenoncefor more than one call to the
> > > API then you *should* be getting an error.
>
> > > Chris- Hide quoted text -
>
> - Show quoted text -



[twitter-dev] Re: Invalid / used nonce

2009-08-10 Thread Rob O'Brien

I'm getting the same response. All weekend, I chalked it up to being an
issue during recovery of the systems, but I'm still seeing it this morning
on 100% of my calls. It was working before the attack.

401:Authentication credentials were missing or incorrect.  
/followers/ids.xml Invalid / used nonce


Rob O'Brien
Web Application Developer & Consultant
r...@zepoid.com
  
  
 

-Original Message-
From: twitter-development-talk@googlegroups.com
[mailto:twitter-development-t...@googlegroups.com] On Behalf Of graceawalker
Sent: Monday, August 10, 2009 6:15 AM
To: Twitter Development Talk
Subject: [twitter-dev] Invalid / used nonce


I am calling and getting the whole way up to getting the access token
just fine in my app (one im writing myself in c#), but when i try and
call the update status URL im getting an 'Invalid/used nonce' error in
my response data. Im not sure why this is, im calling the update
method in the exact same way that i called request token apart from
the new 'status' parameter in the query string. I call 'verify
credentials' with my access token to ensure that it is working and it
sends me back all of the correct data, but it is erroring when trying
to update my status. Is there any obvious solution to this, or am i
not supposed to be signing and organising the parameters in the same
way that i did before? Im really stuck here guys and need help!



[twitter-dev] Re: Bad Celebrity Search Results

2009-05-14 Thread rob

I just tried this with the API, and it seems to work for Diddy:

feed://twitter.com/statuses/user_timeline.atom?screen_name=iamdiddy

And Shaq:

feed://twitter.com/statuses/user_timeline.atom?screen_name=THE_REAL_SHAQ




On May 13, 10:18 pm, "Brendan O'Connor"  wrote:
> i wanted to get all of shaq's tweets with the search api and i couldn't :)
>
> going through random ones on twitterholic ..
> from:aplusk barely works
> from:scobleizer works
> from:adventuregirl works
> from:timoreilly works
>
> haven't tried the standard API for these.
>
> bleah
> Brendan
>
>
>
> On Wed, May 13, 2009 at 6:57 PM, explicious  wrote:
>
> > Hi Brendan,
>
> > found out how? references? or merely observed per the link? It's
> > curious because it might be throwing off my calculated 'coolness
> > vector' - I noticed the coolness vector of a tweet containing a celebs
> > name seemed lower than anticipiated - however it wasn't the point of
> > the experiment, mind you - I just found the downplay sorta odd and mad-
> > ening. :-)
>
> > Thanks
> > Waitman
>
> > On May 13, 6:44 pm, "Brendan O'Connor"  wrote:
> > > i just found out some high-volume users aren't indexed at all.  for
> > example:


[twitter-dev] Bad Celebrity Search Results

2009-05-12 Thread rob

Hi,

I'm doing a project that deals specifically with P Diddy (twitter.com/
iamdiddy). When I do a search, no tweets newer than May 6th show up.
However, looking at his timeline, more recent tweets exist. This isn't
a problem with my tweets (twitter.com/robseward). Also, it appears
search is not returning accurate results for other celebrities online.
Does anyone know what's going on here? Is the problem isolated to
users with a high number of followers or is it something non celebrity-
related. Some examples below:


P Diddy:
http://search.twitter.com/search?q=from%3Aiamdiddy
http://twitter.com/iamdiddy

Ashton Kutcher:
http://search.twitter.com/search?q=from%3Aaplusk
http://twitter.com/aplusk

Shaq:
http://search.twitter.com/search?q=from=THE_REAL_SHAQ
twitter.com/THE_REAL_SHAQ


Me (not a celebrity. Accurate search results).
http://search.twitter.com/search?q=+from%3Arobseward
twitter.com/robseward



Rob


[twitter-dev] Re: Freelance Twitter API Dev directory?

2009-04-23 Thread Rob Banagale

Hello,

I'd like to be added to this list please.

Real Name: Rob Banagale
Twitter Username: @neutrinosllc
email: r...@neutrinosllc.com

Social media consulting, development and design specializing in Ruby
on Rails.
Our strength is in creating integrations between services, including
Facebook and iPhone applciations.
We have five applications in iTunes and can help you achieve your
vision for a Twitter application.

Thank you.

Rob


[twitter-dev] Re: I cannot add a custom background image

2009-03-17 Thread Rob

DougW:

Same issues for me. Failed for about 3 days now on multiple
attempts.Trying to reload an edited version of my background image.
File size, pixel dimensions unchanged (just painted a few pixels
differently).

getting the "something is technically wrong" page.

Attempts to load through the twitter.com website fail using both
Firefox 3.0.7 and IExplorer 7.0.5730.11

googling seems to indicate this problem is widespread.

any eta on a fix?

- Rob

On Mar 17, 10:30 am, Doug Williams  wrote:
> Victor,
> Are you doing this through the API or through the Web?
>
> If this was through the Web, please contact the support staff 
> throughhttp://bit.ly/18bY2
>
> If you were using the API, please provide more details on your
> account/update_profile_background_image method invocation such as what
> language or tool you are using, etc...
>
> Thanks,
> Doug Williams
> Twitter API Supporthttp://twitter.com/dougw
>
> On Tue, Mar 17, 2009 at 11:08 AM, Victor Hugo  wrote:
>
> > I have been trying around 30 times and I cannot add a custom
> >backgroundimage.
>
> > it always display this message:
>
> > "Something is technically wrong.
> > Thanks for noticing—we're going to fix it up and have things back to
> > normal soon."
>
> > Myimageis JPG and 50.5Kb
>
> > Can somebody give me a hand or fix the issue, please.
>
> > thank you


Re: Custom User Agent

2009-02-09 Thread Rob Ashton

Are you looking for this?

http://apiwiki.twitter.com/FAQ#HowdoIget“fromMyApp”appendedtoupdatessentfrommyAPIapplication

Regards,

Rob

On Feb 9, 9:04 am, "R.Sebastian"  wrote:
> I'm trying to fix a custom User Agent for a long time, using the API
> in PHP and Curl.
>
> This is my script:
>
>                  $curl_handle = curl_init();
>                 curl_setopt($curl_handle, CURLOPT_URL, "$url");
>                 curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
>                 curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
>                 curl_setopt($curl_handle, CURLOPT_POST, 1);
>                 curl_setopt($curl_handle, CURLOPT_USERAGENT, ' *Flog 
> (http://www.
> 17031986.nl)');
>                 curl_setopt($curl_handle, CURLOPT_POSTFIELDS, 
> "status=$message");
>                 curl_setopt($curl_handle, CURLOPT_USERPWD, 
> "$username:$password");
>                 $buffer = curl_exec($curl_handle);
>                 curl_close($curl_handle);
>                 }
>
> ?>
>
> I want to add the custom user agent, but if i post a message (which
> works), Twitter says the user agent is "via web" instead of my custom
> agent. Does anyone knows the answer? Thanks!


Re: TwitPicGrid = TwitPic + TweetGrid mashup

2009-02-04 Thread Rob Iles
Chad, Very nice :)

suggestion: allow filter by language (if the API supports this).

Rob Iles

2009/2/4 Chad Etzel 

>
> I thought about doing that, but I don't want to overload people's
> browsers and memory by loading a metric-ton of images.  From my
> experience, most browsers don't handle dynamically generated pages'
> memory or garbage collection too well.  I come from an embedded
> point-of-view, so my definition of "handles memory well" may be a bit
> biased...
>
> But apparently removing DOM elements from pages doesn't exactly free
> memory either, so it may not matter anyway... I'll play with it some
> more...
>
> -Chad
>
> On Wed, Feb 4, 2009 at 12:15 PM, Peter Denton 
> wrote:
> > looks great Jazzy! Works extremely well too.
> >
> > I was thinking one thing, once it got to 200 pics, it could throw up a
> "page
> > 2" tab, and so on.
> >
> > On Wed, Feb 4, 2009 at 9:09 AM, Chad Etzel  wrote:
> >>
> >> Thanks to those who provided feedback.. I have made some small tweaks:
> >>
> >> - Added an "Auto-Scroll" option which will scroll the page as new pics
> >> come in.
> >> - Added "Auto-Resume after 200 pics" option for
> >> continuous/screen-saver type mode.
> >> - Made Pause/Resume links mutually-exclusive with
> >> Fade-In-Fade-Out-Technology (tm)
> >> - Automatically display the tweets of new pics in the status bar
> >> unless you are already hovering over a pic.
> >>
> >> http://tweetgrid.com/twitpicgrid
> >>
> >> -Chad
> >>
> >> On Wed, Feb 4, 2009 at 5:04 AM, Stuart  wrote:
> >> >
> >> > 2009/2/4 Chad Etzel :
> >> >> With many thanks to Noah Everett (the TwitPic dude) for allowing the
> >> >> use of TwitPic thumbnails, I have created TwitPicGrid at
> >> >> http://tweetgrid.com/twitpicgrid as a mashup.  Watch new TwitPics
> >> >> arrive as they are tweeted, or search for keywords associated with
> the
> >> >> pics. Could be interesting for real-time pics of events (Apple
> >> >> keynote, Inaguration (oops, too late), Steven Fry being trapped in an
> >> >> elevator, etc...), or just searching for everyone's cat.
> >> >>
> >> >> Feedback welcome. Enjoy.
> >> >
> >> > Very nice.
> >> >
> >> > Small suggestion... it would be easier to watch if new images appeared
> >> > at the top-left rather than at the end - no scrolling needed.
> >> >
> >> > One other minor UI note... why show both stop and resume links at the
> >> > same time? Surely they're mutually exclusive.
> >> >
> >> > -Stuart
> >> >
> >> > --
> >> > http://stut.net/
> >> >
> >
> >
>



-- 
Rob Iles

Harmony - www.domialifestyle.com
Software Development - www.rob-iles.co.uk/rmidevelopment

Twitter: http://twitter.com/Rob_Iles
Skype: rob_iles
12seconds: http://12seconds.tv/channel/rmi


Re: Whitelisting: Change server

2009-02-02 Thread Rob Ashton

Further to this, I would like to apologise for being so defensive in
my first reply, that was unnecessary too.

I don't wish to get off on the wrong foot.

On Feb 2, 2:16 pm, Rob Ashton  wrote:
> It is a valid thing *worth* pointing out, that if some of us are
> waiting over a week (10 days so far for me iirc), and the lead API
> developer is still saying 72 hours, that there might be a problem, and
> the only way Twitter can know of the problem is if we post our
> feedback on it.
>
> My intention in writing my above post was to make sure that Alex was
> *aware* that things were moving even slower than as he stated, I have
> indeed read the other posts in this group, having been lurking here
> since starting work on my small twitter project, and I am fully aware
> that the API demands are busy at the moment, especially with the OAUTH
> beta currently undergoing trial.
>
> I was not asking for miracles, I was not complaining, and I wasn't
> even asking for the process to be faster, I was just stating the facts
> as they were, from my own research, asking people on Twitter + other
> developer groups whether they had had any response in the past week.
>
> And as a side note, your above posts are unnecessarily snide/
> confrontational, the one I am replying to in particular, as if you
> actually *want* to rile me up. Please don't do this, there are nicer
> ways of saying what you wanted to say.
>
> Rob
>
> On Feb 2, 2:02 pm, Cameron Kaiser  wrote:
>
> > > Oh faff off, there is no need for that tone, I was merely stating the
> > > facts, which includes exactly what you just said too.
>
> > > If you want to have an argument on free beer, api requests or
> > > whatever, then I have a lot to say that I am not saying, because this
> > > is not the place for it.
>
> > That's good.
>
> > --
> >  
> > personal:http://www.cameronkaiser.com/--
> >   Cameron Kaiser * Floodgap Systems *www.floodgap.com*ckai...@floodgap.com
> > -- Are you ready for de BIG FUN?? Yeah! -- Headmaster Kuno, "Ranma 1/2" 
> > ---


Re: Whitelisting: Change server

2009-02-02 Thread Rob Ashton

It is a valid thing *worth* pointing out, that if some of us are
waiting over a week (10 days so far for me iirc), and the lead API
developer is still saying 72 hours, that there might be a problem, and
the only way Twitter can know of the problem is if we post our
feedback on it.

My intention in writing my above post was to make sure that Alex was
*aware* that things were moving even slower than as he stated, I have
indeed read the other posts in this group, having been lurking here
since starting work on my small twitter project, and I am fully aware
that the API demands are busy at the moment, especially with the OAUTH
beta currently undergoing trial.

I was not asking for miracles, I was not complaining, and I wasn't
even asking for the process to be faster, I was just stating the facts
as they were, from my own research, asking people on Twitter + other
developer groups whether they had had any response in the past week.

And as a side note, your above posts are unnecessarily snide/
confrontational, the one I am replying to in particular, as if you
actually *want* to rile me up. Please don't do this, there are nicer
ways of saying what you wanted to say.

Rob


On Feb 2, 2:02 pm, Cameron Kaiser  wrote:
> > Oh faff off, there is no need for that tone, I was merely stating the
> > facts, which includes exactly what you just said too.
>
> > If you want to have an argument on free beer, api requests or
> > whatever, then I have a lot to say that I am not saying, because this
> > is not the place for it.
>
> That's good.
>
> --
>  personal:http://www.cameronkaiser.com/--
>   Cameron Kaiser * Floodgap Systems *www.floodgap.com* ckai...@floodgap.com
> -- Are you ready for de BIG FUN?? Yeah! -- Headmaster Kuno, "Ranma 1/2" 
> ---


Re: Whitelisting: Change server

2009-02-02 Thread Rob Ashton

Oh faff off, there is no need for that tone, I was merely stating the
facts, which includes exactly what you just said too.

If you want to have an argument on free beer, api requests or
whatever, then I have a lot to say that I am not saying, because this
is not the place for it.

On Feb 2, 1:57 pm, Cameron Kaiser  wrote:
> > I don't think they're looking at the whitelist requests, or the
> > whitelist request form is broken or there is just a really massive
> > backlog, because everybody I've spoken to has this problem.
>
> > Nobody I have contacted has been whitelisted in the past week.
>
> "I don't like how quickly I'm served this free beer."
>
> If you check recent threads, there is mention of how astronomically the list
> of whitelisting requests is growing.
>
> --
>  personal:http://www.cameronkaiser.com/--
>   Cameron Kaiser * Floodgap Systems *www.floodgap.com* ckai...@floodgap.com
> -- Seen on hand dryer: "Push button for a message from your congressman." 
> -


Re: Whitelisting: Change server

2009-02-02 Thread Rob Ashton

I don't think they're looking at the whitelist requests, or the
whitelist request form is broken or there is just a really massive
backlog, because everybody I've spoken to has this problem.

Nobody I have contacted has been whitelisted in the past week.

On Feb 2, 11:29 am, Alex  wrote:
> hi Alex,
>
> it's more than a week now since I requested it.
>
> Alex
>
> On 30 Jan., 20:58, Alex Payne  wrote:
>
> > Just hang tight. As we mention everywhere, it can take 72 hours to get
> > a response.
>
> > On Fri, Jan 30, 2009 at 08:10, Alex  wrote:
>
> > > I have a whitelisted IP for my application but now we changed our
> > > server and I need a new whitelisted IP. Tried to communicate this a
> > > few times on the whitelisting form, but there is no response from
> > > twitter.
> > > What can I do now?
>
> > > Thanks, Alex
>
> > --
> > Alex Payne - API Lead, Twitter, Inc.http://twitter.com/al3x


Re: Whitelisting notification?

2009-02-01 Thread Rob Ashton

I was wondering this myself, it's been over a week since I requested
auth and it hadn't occured to me that I might have been whitelisted
and simply not notified.

Gilles Frydman wrote:
> Sorry for the /trivial/ question but do you send any notification to those
> who request whitelisting?If so, how is the notification sent?
>
> --
> Gilles Frydman


Re: BarackObama: Wha...

2009-01-05 Thread Rob Iles
It's been said by others before, and I 100% agree.

I'm not a twitter "fanboy" (I use it, occasionally, find it pretty cool,
flattered by some of the people who follow me). It's the SUPPORT, the
transparency, the honest answers that haven't been sanitised by Marketing /
Management. It's fantastic. I subscribed to the API mailing list several
months ago; at the time, I was considering writing a twitter client (for
various reasons, that hasn't happened yet), yet I've remained subscribed to
the list, which isn't insignificant in daily traffic, and realistically is
of little relevance to my current activities solely because of the straight
up, "here's what's happening", "this is what we intend to do, will it cause
you problems" type messages from Alex and Co.

There's been a recent outbreak of "threats" (for want of a better word) -
people calling for a boycott etc - and this saddens me.

Give the guys (and gals?) a break! They're well aware of the issues - and
provide facilities for you to report any new anomalies - what more could you
want? (I've worked for companies who've paid 7digits for this sort of
support!)

I *clearly* don't speak for Twitter, I'm not even a notable contributor to
the traffic, let alone the API / Technology.

I am, however, the development, support, sales and marketing team for
*completely different product*. I pride myself on the open and honest
information I provide my customers (including those using my API) - and
they, in turn, appreciate it. The "community" that builds around this is
fantastic; not in any bankable/tangible way - call it "Karma" if you like;
good spirit flowing in both directions.

It's refreshing to see a company (Twitter, in the form of Alex) telling it
as it is, rather than hiding behind excuses, "spinning it", or denying all
knowledge (believe me, it does happen - especially in tech companies).

Apologies to anyone who feels my response is spam or a rant, I just wanted
to publicly show my support for the twitter team. Long may they continue in
the mode they've done so to date.

Kind regards,

Rob Iles
DomiaLifestyle <http://www.domialifestyle.com>
Harmony Development <http://www.rob-iles.co.uk/rmidevelopment>
Twitter <http://twitter.com/Rob_Iles>
Skype: rob_iles 
[image: http://www.domialifestyle.com/images/logo.jpg]
2009/1/6 B. Maryott 

>
> There is much rejoicing!
>
> I don't think there's ever been ANYTHING that's 100% proof of
> anything.  But when something comes up, you guys at Twitter do awesome
> work, for which I thank you.
>
> On Mon, Jan 5, 2009 at 2:41 PM, Alex Payne  wrote:
> >
> > We've identified the source of this issue and have taken steps to
> > ensure it doesn't happen again.
> >
> > On Mon, Jan 5, 2009 at 10:45, B. Maryott  wrote:
> >>
> >> So, it looks like there's a hole in something.  I just got this that
> >> claims to be from BarackObama (which I follow) through Twitter.
> >> "BarackObama: What is your opinion on Barack Obama? Take the survey
> >> and possibly win ??500 in free gas. http://tinyurl.com/9evlne";
> >>
> >> So someone is being naughty and there's already a hole in one of the
> >> authentication systems that lets these type of people in.
> >>
> >>
> >> Fun and delightful stuff.
> >>
> >>
> >>
> >> --
> >> bmary...@gmail.com
> >>
> >
> >
> >
> > --
> > Alex Payne - API Lead, Twitter, Inc.
> > http://twitter.com/al3x
> >
>
>
>
> --
> bmary...@gmail.com
>


Re: excited

2008-12-15 Thread Rob Iles
Not sure that's good or bad - Surely the API Lead should get huge stock
grant in GOOG ;)


2008/12/15 Alex Payne 

>
> It's probably worth mentioning that this partnership doesn't have any
> bearing on the API.  I would've mentioned if it did :)
>
> On Mon, Dec 15, 2008 at 14:57, Andrew Badera  wrote:
> > hehehe my first thought when I heard rumblings, before details, was "what
> > about jaiku?"
> >
> >
> >
> > On Mon, Dec 15, 2008 at 5:56 PM, Cameron Kaiser 
> > wrote:
> >>
> >> > Me.MissedBigAnnouncement(); ??
> >>
> >> Yes, Google bought Twitter and is merging it with Jaiku. (*)
> >>
> >> --
> >>  personal:
> >> http://www.cameronkaiser.com/ --
> >>  Cameron Kaiser * Floodgap Systems * www.floodgap.com *
> >> ckai...@floodgap.com
> >> -- We are all worms. But I do believe I am a glowworm. -- Winston
> >> Churchill ---
> >>
> >> (*) and I also plan to sell you Manhattan Island for $24 in jewelry
> >>
> >
> >
>
>
>
> --
> Alex Payne - API Lead, Twitter, Inc.
> http://twitter.com/al3x
>



-- 
Rob Iles

Harmony - www.domialifestyle.com
Software Development - www.rob-iles.co.uk/rmidevelopment

Twitter: http://twitter.com/Rob_Iles
Skype: rob_iles
12seconds: http://12seconds.tv/channel/rmi


Re: excited

2008-12-15 Thread Rob Iles
Ah, OK - thanks for the clarification.

Still - best of luck to the Twitter Team :)

2008/12/15 Andrew Badera 

> because it's not earth-shaking, unless you're facebook ... twitter and
> google are partnering on FriendConnect. You can use your Twitter account as
> an OpenID or similar anywhere where Google's FriendConnect is accepted.
>
> Thanks-
> - Andy Badera
> - and...@badera.us
> - (518) 641-1280
> - Google me: http://www.google.com/search?q=andrew+badera
>
>
>
>
> On Mon, Dec 15, 2008 at 5:47 PM, Rob Iles  wrote:
>
>> Me.MissedBigAnnouncement(); ??
>>
>> 2008/12/15 JSadamant 
>>
>>>
>>> i can't wait to see what you crazy geniuses do together. twitter &
>>> google. watch out world!
>>>
>>
>>
>>
>> --
>> Rob Iles
>>
>> Harmony - www.domialifestyle.com
>> Software Development - www.rob-iles.co.uk/rmidevelopment
>>
>> Twitter: http://twitter.com/Rob_Iles
>> Skype: rob_iles
>> 12seconds: http://12seconds.tv/channel/rmi
>>
>
>


-- 
Rob Iles

Harmony - www.domialifestyle.com
Software Development - www.rob-iles.co.uk/rmidevelopment

Twitter: http://twitter.com/Rob_Iles
Skype: rob_iles
12seconds: http://12seconds.tv/channel/rmi


Re: excited

2008-12-15 Thread Rob Iles
Me.MissedBigAnnouncement(); ??

2008/12/15 JSadamant 

>
> i can't wait to see what you crazy geniuses do together. twitter &
> google. watch out world!
>



-- 
Rob Iles

Harmony - www.domialifestyle.com
Software Development - www.rob-iles.co.uk/rmidevelopment

Twitter: http://twitter.com/Rob_Iles
Skype: rob_iles
12seconds: http://12seconds.tv/channel/rmi