From 9a3cf4759af01fa61b190c13e9f9031e7e6f632e Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Sat, 6 Aug 2016 12:23:21 -0400 Subject: [PATCH] Text clarification --- auth-server-which-grant.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/auth-server-which-grant.md b/auth-server-which-grant.md index da2e9237..94964484 100755 --- a/auth-server-which-grant.md +++ b/auth-server-which-grant.md @@ -4,9 +4,9 @@ title: Which OAuth 2.0 grant should I use? permalink: /authorization-server/which-grant/ --- -# Which OAuth 2.0 grant should I use? +# Which OAuth 2.0 grant should I implement? -A grant is a method of acquiring an access token. Deciding which grants to implement requires implementing the right grant depending on the type of client and the best experience for your users. +A grant is a method of acquiring an access token. Deciding which grants to implement depends on the type of client the end user will be using, and the experience you want for your users.
@@ -36,4 +36,4 @@ If the client is a web application that has runs entirely on the front end (e.g. If the client is a native application such as a mobile app you should implement the [password grant](/authorization-server/resource-owner-password-credentials-grant/). -Third party native applications should use the [authorization code grant](/authorization-server/auth-code-grant/) (via the native browser, not an embedded browser - e.g. for iOS push the user to Safari or use [SFSafariViewController](https://developer.apple.com/library/ios/documentation/SafariServices/Reference/SFSafariViewController_Ref/), don't use an embedded [WKWebView](https://developer.apple.com/library/ios/documentation/WebKit/Reference/WKWebView_Ref/)). \ No newline at end of file +Third party native applications should use the [authorization code grant](/authorization-server/auth-code-grant/) (via the native browser, not an embedded browser - e.g. for iOS push the user to Safari or use [SFSafariViewController](https://developer.apple.com/library/ios/documentation/SafariServices/Reference/SFSafariViewController_Ref/), don't use an embedded [WKWebView](https://developer.apple.com/library/ios/documentation/WebKit/Reference/WKWebView_Ref/)). \ No newline at end of file