From 1249eac2890b0ceb274fdc4f00a9faad9265ceb1 Mon Sep 17 00:00:00 2001 From: Sam Fleming Date: Thu, 29 Sep 2016 15:38:48 +0100 Subject: [PATCH] Fix incorrect link --- auth-server-which-grant.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auth-server-which-grant.md b/auth-server-which-grant.md index 94964484..a191247f 100755 --- a/auth-server-which-grant.md +++ b/auth-server-which-grant.md @@ -32,8 +32,8 @@ Depending on whether or not the client is capable of keeping a secret will depen If the client is a web application that has a server side component then you should implement the [authorization code grant](/authorization-server/auth-code-grant/). -If the client is a web application that has runs entirely on the front end (e.g. a single page web application) you should implement the [password grant](/authorization-server/resource-owner-password-credentials-grant/) for a first party clients and the [implicit grant](/authorization-server/auth-code-grant/) for a third party clients. +If the client is a web application that has runs entirely on the front end (e.g. a single page web application) you should implement the [password grant](/authorization-server/resource-owner-password-credentials-grant/) for a first party clients and the [implicit grant](/authorization-server/implicit-grant/) for a third party clients. 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/)).