As I understand it, the following chain of events occurs in OAuth 2 in order to Site A to access User X's information on Site B.
- Site A registers with Site B, and obtains a Secret and an ID.
- When User X tells Site A to access Site B, User X is sent to Site B where it tells Site B that he would indeed like to give Site A permissions to specific information.
- Site B redirects User X back to Site A, along with an Authorization Code.
- Site A then passes that Authorization Code along with its Secret back to Site B in return for a Security Token.
- Site A then makes requests to Site B on behalf of User X by bundling the Security Token along with requests.
How does all of this work in terms of security and encryption, on a high-level? How does OAuth 2 protect against things like replay attacks using the Security Token?