We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c7a578 commit d339973Copy full SHA for d339973
samples/AuthorizationExample/Program.cs
@@ -27,9 +27,11 @@ public static async Task Main(string[] args)
27
AuthorizationOptions = new McpAuthorizationOptions
28
{
29
// Pre-registered client credentials (if applicable)
30
- ClientId = "my-registered-client-id",
31
- ClientSecret = "optional-client-secret",
32
-
+ ClientId = "04f79824-ab56-4511-a7cb-d7deaea92dc0",
+
+ // Setting some pre-defined scopes the client requests.
33
+ Scopes = ["User.Read"],
34
35
// Specify the exact same redirect URIs that are registered with the OAuth server
36
RedirectUris = new[]
37
0 commit comments