From 8bcd00dbbac543d19666eea80238e05ac8fcf810 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Greni=C3=A9?= Date: Thu, 24 Jul 2014 14:45:48 -0700 Subject: [PATCH] Update README.md `checkout` not `clone` --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e455cb4..e9a1b29 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This tutorial is based on a git repository that you can clone. You can follow th In this tutorial, we'll have to implement the server-side flow. This flow includes the following steps : -- The client asks the backend for a state token through GET +- The client asks the backend for a state token through GETs - The backend gives a state token - The client runs the OAuth flow (popup or redirect) with that token - OAuth.io responds with a code @@ -320,7 +320,7 @@ The `credentials` object has to be created first. The `index.html` page also poi That's it for step 5. To get the code right away, just run the following command : ```sh -$ git clone step-5 --force +$ git checkout step-5 --force ``` **step-6 Adding a call to retrieve the state token**