From a522b7936d2e11337fed3113ee35df88bd2b3524 Mon Sep 17 00:00:00 2001 From: Paul Zinselmeyer Date: Tue, 12 Mar 2024 16:18:18 +0100 Subject: [PATCH] replace outdated test credentials with placeholder --- examples/basic/src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/basic/src/main.rs b/examples/basic/src/main.rs index e8cd78a..4da1acf 100644 --- a/examples/basic/src/main.rs +++ b/examples/basic/src/main.rs @@ -31,10 +31,10 @@ async fn main() { })) .layer( OidcAuthLayer::::discover_client( - Uri::from_static("http://localhost:8080"), - "https://auth.zettoit.eu/realms/zettoit".to_string(), - "oxicloud".to_string(), - Some("IvBcDOfp9WBfGNmwIbiv67bxCwuQUGbl".to_owned()), + Uri::from_static("https://app.example.com"), + "https://auth.example.com/auth/realms/example".to_string(), + "my-client".to_string(), + Some("123456".to_owned()), vec![], ) .await