flownative / oauth2-client
A generic OAuth2 client base implementation for Flow Framework applications
Package info
github.com/flownative/flow-oauth2-client
Type:neos-package
pkg:composer/flownative/oauth2-client
Fund package maintenance!
Requires
- php: 8.3.* || 8.4.* || 8.5.*
- ext-sodium: *
- guzzlehttp/guzzle: ^7.9
- league/oauth2-client: ^2.9
- neos/flow: ~8.3.13 || ~8.4.0 || ^9.0
- ramsey/uuid: ^4.7.6
Requires (Dev)
- phpunit/phpunit: ^12.5
Suggests
None
Provides
None
Conflicts
None
Replaces
None
- dev-main
- v5.0.0
- v4.1.2
- v4.1.1
- v4.1.0
- v4.1.0-beta.2
- v4.1.0-beta.1
- v4.0.3
- v4.0.2
- v4.0.1
- v4.0.0
- v3.4.0
- v3.3.1
- v3.3.0
- v3.2.1
- v3.2.0
- v3.1.0
- v3.0.1
- v3.0.0
- v2.2.1
- v2.2.0
- v2.1.1
- v2.1.0
- v2.1.0-beta.1
- v2.0.1
- v2.0.0
- v2.0.0-beta.1
- v1.0.0
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.1
- 0.1.0
- 0.0.5
- 0.0.4
- 0.0.3
- 0.0.2
- 0.0.1
- dev-task/client-credentials
- dev-task/support-flow-8
- dev-task/flow-start-without-row
- dev-task/callback-robustness
- dev-task/expiry-and-garbage-collection
- dev-task/cleanup-for-5.0
- dev-task/test-seams-and-coverage
This package is auto-updated.
Last update: 2026-09-14 15:42:35 UTC
README
OAuth 2.0 Client for Flow Framework
This Flow package provides an OAuth 2.0 client SDK. Even though it can be used as a generic OAuth2 client, it was developed as a backing library for the OpenID Connect package. That's why documentation for this package is a bit sparse at the moment and examples for generic use are missing.
When upgrading from version 4, read the migration guide.
Authorizations
This package stores tokens as "authorizations" in a dedicated database table.
For example, the authorization code flow ends with a token, which is stored in the authorizations table. While the flow is in progress, this package keeps track of its "state" in the cache "Flownative_OAuth2_Client_State", in order to make sense of the incoming "finish authorization" request. Another example is the client credentials flow, where an access token is stored in the authorizations table which is needed for executing authorized requests to the respective service.
Token lifetime
An authorization expires together with its token. Expired authorizations are removed by the garbage collection.
Tokens which don't specify an expiration time get a default lifetime of 600 seconds (10 minutes). A token of the client credentials flow is replaced only when the new token was issued. An authorization code flow is stored as an authorization only when it finishes. Until then, it is kept in the state cache, where it expires after one hour.
The default token lifetime and the frequency of the garbage collection can be configured:
Flownative: OAuth2: Client: garbageCollection: # The probability in percent that a request which used an OAuth client # removes expired authorizations and states when it ends. # # Examples: # 1 (a 1 % chance to clean up) # 20 (a 20 % chance to clean up) # 0.001 (a 0.001 % chance to clean up) probability: 1 token: # Lifetime in seconds of tokens which do not specify an expiration time defaultLifetime: 600
Note: By setting the defaultLifetime to null, tokens without an
expiration time won't expire.
Instead of relying on chance, you can remove expired authorizations on
a fixed schedule, for example with a cron job. Set the probability to
0 and run the following command regularly:
$ ./flow oauth:collectgarbage
Authorization metadata
Authorizations also may contain developer-provided metadata. For example, you may attach an account identifier to an authorization when an authorization process starts and use that information when authorization finishes to make sure that the authorization is only used for a specific account (or customer number, or participant id).
Pass the metadata when you start the authorization code flow. It is
stored together with the authorization when the flow finishes. The
browser binding ties the authorization to the browser which starts it,
so the response which redirects the browser must set its cookie. The
client class provides the client secret in getClientSecret().
$browserBinding = BrowserBinding::generate(); $loginUri = $oAuthClient->startAuthorization( $this->appId, $returnToUri, $scope, $browserBinding, [], json_encode($metadata) ); $this->response->setCookie($browserBinding->createCookie()); $this->redirectToUri($loginUri);
When the authorization is finished, the return URI contains a handle of the authorization. The handle can only be used once, within a minute and by the same browser. You may retrieve the metadata as follows:
$authorizationHandle = $request->getQueryParams()[OAuthClient::generateAuthorizationIdQueryParameterName($serviceType)]; $authorization = $oAuthClient->claimAuthorization($authorizationHandle, $request->getCookieParams()); $metadata = json_decode($authorization->getMetadata());
To change the metadata of a finished authorization, use
setAuthorizationMetadata().
Refused authorizations
If the OAuth server refuses an authorization, for example because the user denied access, the browser still returns to the return URI. Instead of the authorization id, the URI then contains the error code:
$errorParameterName = OAuthClient::generateAuthorizationErrorQueryParameterName($serviceType); $error = $request->getQueryParams()[$errorParameterName] ?? null;
The error codes are the ones defined by
RFC 6749 and
OpenID Connect,
for example access_denied. Any other code arrives as server_error.
Encryption
By default, access tokens are serialized and stored unencrypted in the "authorizations" database table. You can improve the security of your application by enabling the encrypted-at-rest feature of this package. When active, it encrypts tokens before storing them in the database and decrypts them automatically when they are retrieved. The secret key which is needed for encryption and decryption is not stored in the database.
This package uses the "ChaCha20-Poly1305-IETF" construction for authenticated encryption / decryption of serialized tokens, provided by the "sodium" PHP extension.
Generating a Secret Key
The OAuth2 Flow package provides a CLI command for generating encryption keys suitable for the currently supported encryption method:
$ ./flow oauth:generateencryptionkey qpBzrH7icQqBKenvk8wTKROv4qcJNxslzdGo3IKXmws=
The key is base64-encoded in order to simplify handling and being able to pass the key via Flow settings.
Enabling Encryption
Set the encryption key via Flow settings (for example in your global "Configuration/Settings.yaml"). Make sure to deploy this setting securely, for example by creating the Settings file during deployment or by using environment variables.
Flownative: OAuth2: Client: encryption: base64EncodedKey: 'qpBzrH7icQqBKenvk8wTKROv4qcJNxslzdGo3IKXmws='
Verifying Encryption Configuration
When you have set the encryption key, test that everything is working as
expected. Run your application so that a new authorization is created.
Check the database table flownative_oauth2_client_authorization: the
column serializedaccesstoken should be empty and the column
encryptedserializedaccesstoken should contain a long string similar to
this one:
ChaCha20-Poly1305-IETF$Mjdj4s9IFrPp6HFK$k9v3x…KQ==
There are three parts in this string, separated by two dollar signs:
- the construction used for encryption ("ChaCha20-Poly1305-IETF")
- the nonce used for this particular entry ("Mjdj4s9IFrPp6HFK")
- the encrypted data ("k9v3x…KQ==")