Skip to content

Commit

Permalink
Fix samples
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollo3zehn committed Mar 17, 2024
1 parent 48b2538 commit 130a8b6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion samples/C#/sample_export.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"var uri = new Uri(\"http://localhost:5000\");\n",
"var client = new NexusClient(uri);\n",
"\n",
"await client.SignInAsync(accessToken);"
"client.SignIn(accessToken);"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion samples/C#/sample_load.dib
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var accessToken = "<token>";
var uri = new Uri("http://localhost:5000");
var client = new NexusClient(uri);

await client.SignInAsync(accessToken);
client.SignIn(accessToken);

#!markdown

Expand Down
2 changes: 1 addition & 1 deletion samples/python/sample_export_async.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"base_url = \"http://localhost:5000\"\n",
"client = NexusAsyncClient.create(base_url)\n",
"\n",
"await client.sign_in(access_token)"
"client.sign_in(access_token)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion samples/python/sample_load_async.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"base_url = \"http://localhost:5000\"\n",
"client = NexusAsyncClient.create(base_url)\n",
"\n",
"await client.sign_in(access_token)"
"client.sign_in(access_token)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/Nexus/Core/NexusAuthExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public static IServiceCollection AddNexusAuth(
OnTokenResponseReceived = context =>
{
/* OIDC spec RECOMMENDS id_token_hint (= id_token) to be added when
* post_logout_redirect_url is specified
* post_logout_redirect_uri is specified
* (https://openid.net/specs/openid-connect-rpinitiated-1_0.html)
*
* To be able to provide that parameter the ID token must become
Expand Down

0 comments on commit 130a8b6

Please sign in to comment.