diff --git a/resources/views/docs/auth.blade.php b/resources/views/docs/auth.blade.php index d5d1c560251..51fdd4c079f 100644 --- a/resources/views/docs/auth.blade.php +++ b/resources/views/docs/auth.blade.php @@ -382,7 +382,7 @@ 'example' => 'client_credentials', ], 'scope' => [ - 'description' => 'Must be `public`; other scopes have no meaningful effect.', + 'description' => 'A space-delimited string of [scopes](#scopes). Only `public` and scopes that allow [delegation](#client-credentials-delegation) are supported.', 'name' => 'scope', 'required' => true, 'type' => 'string', @@ -478,7 +478,7 @@
Client Credentials Grant tokens may be allowed to act on behalf of the owner of the OAuth client (delegation) by requesting the {{ ApidocRouteHelper::scopeBadge('delegate') }} scope, in addition to other scopes supporting delegation. - When using delegation, scopes that support delegation cannot be used together with scopes that do not support delegation. + When using the Client Credentials grant with scopes that support delegation, all requested scopes must support delegation. Delegation is only available to Chat Bots.