Posted to tcl by colin at Sat Jul 17 08:57:12 GMT 2010view raw

  1. Oauth will, upon receiving a request from a client/browser, request temporary credentials from a provider's 'reqmethod' URL. Upon receipt of the credential response, OAuth records the oauth_token provided in that response, and redirects the client/browser to the provider's authorizeuri (augmented by an oauth_callback element which is a URL on the local server.)
  2.  
  3. When the provider has finished doing whatever it does in response to an authorizeuri request, it redirects the client to our callback URL.
  4.  
  5. On receipt of the callback, OAuth.tcl requests an access token from the provider's authorizeuri, which it returns to the client.