Skip to content

Get OIDC JWKS

Retrieve the JSON Web Key Set (JWKS) for OIDC.

Request

Use the ThingsTelemetry\Traccar\Facades\Oidc::getJwks() method.

php
use ThingsTelemetry\Traccar\Facades\Oidc;

$jwks = Oidc::getJwks(); // array

Result

Returns an array containing the JWKS.

php
$keys = $jwks['keys'];

Released under the MIT License.