From fce3b3c5c9e3d93ec52cd98b5104ec4ecbea33ea Mon Sep 17 00:00:00 2001 From: Sebastian Safari Date: Fri, 8 May 2020 10:54:56 -0700 Subject: [PATCH] Add line to readme allowPublicClient line in manifest needed to be set to true Thanks to https://github.com/Azure-Samples/active-directory-dotnetcore-devicecodeflow-v2/issues/9#issuecomment-480306483 --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index dba4841..cc32e96 100644 --- a/README.md +++ b/README.md @@ -71,14 +71,15 @@ You must register this application in the Azure Active Directory tenant associat * Once Azure has created your app, copy your Application Id and give your application access to the required Microsoft Graph API permissions. * Click your app's name (i.e. ChannelSurfCli) from the list of applications * Copy the Application Id - * All settings -> Required permissions - * Click Add - * Select an API -> Microsoft Graph -> Select (button) + * All settings -> API permissions + * Add a permission -> Microsoft Graph -> Delegated permissions * Select permissions * Read all users' full profiles * Read and write all groups - * Click Select + * Click Add permissions * Click Done + * Manifest + * `allowPublicClient` -> Set to `true` * If you plan to run Channel Surf as a non-administrator: applications built using the Graph API permissions above require administrative consent before non-administrative users can sign in - which fortunately, you'll only need to do once. * You can immediately provide consent to all users in your organization using the Azure Portal. Click the "Grant permissions" button, which you can reach via your app's "Required permissions" link.