From 910de5cf87e68b5e3dddd1452641455cb7e58d01 Mon Sep 17 00:00:00 2001 From: mihael Date: Wed, 30 Oct 2024 18:38:29 +0100 Subject: [PATCH] Apply review suggestion, use filmmakers.eu --- source/index.html.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/index.html.md b/source/index.html.md index 6b9e33a7512..04a1ab5f206 100644 --- a/source/index.html.md +++ b/source/index.html.md @@ -68,7 +68,7 @@ See example on how to fetch the OAuth Access Token with curl. ```shell export CLIENT_ID="your-client-id-goes-here" export CLIENT_SECRET="your-client-secret-goes-here" -curl -s -X POST "http://filmmakers.test/oauth/token" \ +curl -s -X POST "http://filmmakers.eu/oauth/token" \ -H "Content-Type: application/x-www-form-urlencoded" \ --data-urlencode "grant_type=client_credentials" \ --data-urlencode "client_id=$CLIENT_ID" \ @@ -90,7 +90,7 @@ Filmmakers expects the OAuth Access Token to be included in all API requests to `Authorization: Bearer ACCESS_TOKEN` -OAuth access tokens expire after a set period (currently 120 minutes, though this may change in the future) and must be refreshed. Your client software is responsible for automating the OAuth flow. You can always retrieve the expiry time of an access token from the introspection endpoint listed in the [Filmmakers OpenID Configuration](https://www.filmmakers.eu/.well-known/openid-configuration)." +OAuth access tokens expire after a set period (currently 120 minutes, though this may change in the future) and must be refreshed. Your client software is responsible for automating the OAuth flow. You can always retrieve the expiry time of an access token from the introspection endpoint listed in the [Filmmakers OpenID Configuration](https://www.filmmakers.eu/.well-known/openid-configuration)." ```shell