You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -180,6 +186,7 @@ final class SdkConfiguration implements ConfigurableContract
180
186
* @param StreamFactoryInterface|null $httpStreamFactory A PSR-17 compatible stream factory to create request body streams.
181
187
* @param bool $httpTelemetry Defaults to true. If true, API requests will include telemetry about the SDK and PHP runtime version to help us improve our services.
182
188
* @param StoreInterface|null $sessionStorage Defaults to use cookies. A StoreInterface-compatible class for storing Token state.
189
+
* @param string $sessionStorageId Defaults to 'auth0_session'. The namespace to prefix session items under.
183
190
* @param string|null $cookieSecret The secret used to derive an encryption key for the user identity in a session cookie and to sign the transient cookies used by the login callback.
184
191
* @param string|null $cookieDomain Defaults to value of HTTP_HOST server environment information. Cookie domain, for example 'www.example.com', for use with PHP sessions and SDK cookies. To make cookies visible on all subdomains then the domain must be prefixed with a dot like '.example.com'.
185
192
* @param int $cookieExpires Defaults to 0. How long, in seconds, before cookies expire. If set to 0 the cookie will expire at the end of the session (when the browser closes).
@@ -190,6 +197,7 @@ final class SdkConfiguration implements ConfigurableContract
190
197
* @param bool $persistAccessToken Defaults to true. If true, the Access Token will persist in session storage.
191
198
* @param bool $persistRefreshToken Defaults to true. If true, the Refresh Token will persist in session storage.
192
199
* @param StoreInterface|null $transientStorage Defaults to use cookies. A StoreInterface-compatible class for storing ephemeral state data, such as nonces.
200
+
* @param string $transientStorageId Defaults to 'auth0_transient'. The namespace to prefix transient items under.
193
201
* @param bool $queryUserInfo Defaults to false. If true, query the /userinfo endpoint during an authorization code exchange.
194
202
* @param string|null $managementToken An Access Token to use for Management API calls. If there isn't one specified, the SDK will attempt to get one for you using your $clientSecret.
195
203
* @param CacheItemPoolInterface|null $managementTokenCache A PSR-6 compatible cache adapter for storing generated management access tokens.
0 commit comments