Zend_Oauth-ProtocolWorkflow.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <sect2 id="zend.oauth.introduction.protocol-workflow">
  4. <title>Protocol Workflow</title>
  5. <para>
  6. Before implementing OAuth it makes sense to understand how the protocol operates. To do so
  7. we'll take the example of Twitter which currently implements OAuth based on the OAuth Core
  8. 1.0 Revision A Specification. This example looks at the protocol from the perspectives of
  9. the User (who will approve access), the Consumer (who is seeking access) and the Provider
  10. (who holds the User's private data). Access may be read-only or read and write.
  11. </para>
  12. <para>
  13. By chance, our User has decided that they want to utilise a new service called TweetExpress
  14. which claims to be capable of reposting your blog posts to Twitter in a manner of seconds.
  15. TweetExpress is a registered application on Twitter meaning that it has access to a Consumer
  16. Key and a Consumer Secret (all OAuth applications must have these from the Provider they
  17. will be accessing) which identify its requests to Twitter and that ensure all requests can
  18. be signed using the Consumer Secret to verify their origin.
  19. </para>
  20. <para>
  21. To use TweetExpress you are asked to register for a new account, and after your registration
  22. is confirmed you are informed that TweetExpress will seek to associate your Twitter account
  23. with the service.
  24. </para>
  25. <para>
  26. In the meantime TweetExpress has been busy. Before gaining your approval from Twitter, it
  27. has sent a HTTP request to Twitter's service asking for a new unauthorized Request Token.
  28. This token is not User specific from Twitter's perspective, but TweetExpress may use it
  29. specifically for the current User and should associate it with their account and store it
  30. for future use. TweetExpress now redirects the User to Twitter so they can approve
  31. TweetExpress' access. The URL for this redirect will be signed using TweetExpress' Consumer
  32. Secret and it will contain the unauthorized Request Token as a parameter.
  33. </para>
  34. <para>
  35. At this point the User may be asked to log into Twitter and will now be faced with a Twitter
  36. screen asking if they approve this request by TweetExpress to access Twitter's API on the
  37. User's behalf. Twitter will record the response which we'll assume was positive. Based on
  38. the User's approval, Twitter will record the current unauthorized Request Token as having
  39. been approved by the User (thus making it User specific) and will generate a new value in
  40. the form of a verification code. The User is now redirected back to a specific callback URL
  41. used by TweetExpress (this callback URL may be registered with Twitter or dynamically set
  42. using an oauth_callback parameter in requests). The redirect URL will contain the newly
  43. generated verification code.
  44. </para>
  45. <para>
  46. TweetExpress' callback URL will trigger an examination of the response to determine whether
  47. the User has granted their approval to Twitter. Assuming so, it may now exchange it's
  48. unauthorized Request Token for a fully authorized Access Token by sending a request back to
  49. Twitter including the Request Token and the received verification code. Twitter should now
  50. send back a response containing this Access Token which must be used in all requests used to
  51. access Twitter's API on behalf of the User. Twitter will only do this once they have
  52. confirmed the attached Request Token has not already been used to retrieve another Access
  53. Token. At this point, TweetExpress may confirm the receipt of the approval to the User and
  54. delete the original Request Token which is no longer needed.
  55. </para>
  56. <para>
  57. From this point forward, TweetExpress may use Twitter's API to post new tweets on the User's
  58. behalf simply by accessing the API endpoints with a request that has been digitally signed
  59. (via HMAC-SHA1) with a combination of TweetExpress' Consumer Secret and the Access Key being
  60. used.
  61. </para>
  62. <para>
  63. Although Twitter do not currently expire Access Tokens, the User is free to deauthorize
  64. TweetExpress from their Twitter account settings. Once deauthorized, TweetExpress' access
  65. will be cut off and their Access Token rendered invalid.
  66. </para>
  67. </sect2>