Ory OAuth2 does not support refresh tokens for the client credentials grant type, and the knowledge sources do not mention any recommended approach to "refresh" tokens for this grant. The typical pattern is to simply request a new access token using the client credentials grant whenever the previous one expires. This is standard practice, as the client credentials grant is intended for machine-to-machine authentication where the client can securely store its credentials and request new tokens as needed [Docs: Hydra Debug](
https://www.ory.sh/docs/hydra/debug). If you need longer-lived tokens, you can configure the access token's lifespan for the client credentials grant, but refresh tokens are not part of this flow [Configure token expiration time](
https://www.ory.sh/docs/hydra/guides/client-token-expiration).