tags:

views:

45

answers:

2

There are a bunch of samples in other programming languages but none for rebol.

How would I do the equivalent of this C# sample:

http://www.codingthewheel.com/archives/codingthetweet

or this in php

http://www.snipe.net/2009/07/writing-your-first-twitter-application-with-oauth/

A: 

You may write your own protocol:

"An open protocol to allow secure API authorization in a simple and standard method from desktop and web applications." http://oauth.net/

"The OAuth 1.0 Protocol" http://tools.ietf.org/html/rfc5849

endo64
I'm not capable of even understanding how protocol works in rebol even less write one. That's one of the reason most people even developer used to languages like php cannot find rebol worth in real use. And I'm not even a developer :)
Rebol Tutorial
Protocols are one of the most versatile aspects of REBOL. You don't have to build a multi-storey behemoth such as HTTP - it can be a small wrapper that takes advantage of REBOL's url handling and series natives. PHP could only dream of such a clean and unobtrusive extension to it's vocabulary...
rgchris
+2  A: 

http://www.ross-gill.com/page/Twitter_API_and_REBOL

for an implementation of OAuth.

Graham Chiu