https://dev.m-medientechnik.de/api/notification/message

Exceptions

The resource owner or authorization server denied the request.

Exceptions 2

League\OAuth2\Server\Exception\ OAuthServerException

  1. *
  2. * @return static
  3. */
  4. public static function accessDenied($hint = null, $redirectUri = null, Throwable $previous = null)
  5. {
  6. return new static(
  7. 'The resource owner or authorization server denied the request.',
  8. 9,
  9. 'access_denied',
  10. 401,
  11. $hint,
  1. try {
  2. // Attempt to parse the JWT
  3. $token = $this->jwtConfiguration->parser()->parse($jwt);
  4. } catch (\Lcobucci\JWT\Exception $exception) {
  5. throw OAuthServerException::accessDenied($exception->getMessage(), null, $exception);
  6. }
  7. try {
  8. // Attempt to validate the JWT
  9. $constraints = $this->jwtConfiguration->validationConstraints();
  1. /**
  2. * @return ServerRequestInterface
  3. */
  4. public function validateAuthorization(ServerRequestInterface $request)
  5. {
  6. $request = $this->decorated->validateAuthorization($request);
  7. $header = $request->getHeader('authorization');
  8. $jwt = trim(preg_replace('/^(?:\s+)?Bearer\s/', '', $header[0]) ?? '');
in vendor/league/oauth2-server/src/ResourceServer.php -> validateAuthorization (line 84)
  1. *
  2. * @return ServerRequestInterface
  3. */
  4. public function validateAuthenticatedRequest(ServerRequestInterface $request)
  5. {
  6. return $this->getAuthorizationValidator()->validateAuthorization($request);
  7. }
  8. }
  1. if (!$this->isRequestScoped($request, ApiContextRouteScopeDependant::class)) {
  2. return;
  3. }
  4. $psr7Request = $this->psrHttpFactory->createRequest($event->getRequest());
  5. $psr7Request = $this->resourceServer->validateAuthenticatedRequest($psr7Request);
  6. $request->attributes->add($psr7Request->getAttributes());
  7. }
  8. protected function getScopeRegistry(): RouteScopeRegistry
  1. $this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. *
  2. * @return TEvent
  3. */
  4. public function dispatch($event, ?string $eventName = null): object
  5. {
  6. $event = $this->dispatcher->dispatch($event, $eventName);
  7. if (!$event instanceof FlowEventAware) {
  8. return $event;
  9. }
  1. *
  2. * @return TEvent
  3. */
  4. public function dispatch($event, ?string $eventName = null): object
  5. {
  6. $event = $this->dispatcher->dispatch($event, $eventName);
  7. if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS', false)) {
  8. return $event;
  9. }
  1. $this->definitionRegistry = $definitionRegistry;
  2. }
  3. public function dispatch($event, ?string $eventName = null): object
  4. {
  5. $event = $this->dispatcher->dispatch($event, $eventName);
  6. if (Feature::isActive('FEATURE_NEXT_17858')) {
  7. return $event;
  8. }
  1. }
  2. $this->dispatch($nested, $name);
  3. }
  4. }
  5. return $this->dispatcher->dispatch($event, $eventName);
  6. }
  7. /**
  8. * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9. */
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. if (false === $controller = $this->resolver->getController($request)) {
  2. throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));
  3. }
  4. $event = new ControllerEvent($this, $controller, $request, $type);
  5. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);
  6. $controller = $event->getController();
  7. // controller arguments
  8. $arguments = $this->argumentResolver->getArguments($request, $controller);
  1. {
  2. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3. $this->requestStack->push($request);
  4. try {
  5. return $this->handleRaw($request, $type);
  6. } catch (\Exception $e) {
  7. if ($e instanceof RequestExceptionInterface) {
  8. $e = new BadRequestHttpException($e->getMessage(), $e);
  9. }
  10. if (false === $catch) {
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. if (!IpUtils::checkIp('127.0.0.1', $trustedProxies)) {
  2. Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
  3. }
  4. try {
  5. return $kernel->handle($request, $type, $catch);
  6. } finally {
  7. // restore global state
  8. Request::setTrustedProxies($trustedProxies, $trustedHeaderSet);
  9. }
  10. }
  1. if ($this->surrogate) {
  2. $this->surrogate->addSurrogateCapability($request);
  3. }
  4. // always a "master" request (as the real master request can be in cache)
  5. $response = SubRequestHandler::handle($this->kernel, $request, HttpKernelInterface::MAIN_REQUEST, $catch);
  6. /*
  7. * Support stale-if-error given on Responses or as a config option.
  8. * RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
  9. * Cache-Control directives) that
  1. // avoid that the backend sends no content
  2. $subRequest->headers->remove('If-Modified-Since');
  3. $subRequest->headers->remove('If-None-Match');
  4. $response = $this->forward($subRequest, $catch);
  5. if ($response->isCacheable()) {
  6. $this->store($request, $response);
  7. }
  1. }
  2. if (null === $entry) {
  3. $this->record($request, 'miss');
  4. return $this->fetch($request, $catch);
  5. }
  6. if (!$this->isFreshEnough($request, $entry)) {
  7. $this->record($request, 'stale');
  1. reload the cache by fetching a fresh response and caching it (if possible).
  2. */
  3. $this->record($request, 'reload');
  4. $response = $this->fetch($request, $catch);
  5. } else {
  6. $response = $this->lookup($request, $catch);
  7. }
  8. $this->restoreResponseBody($request, $response);
  9. if (HttpKernelInterface::MAIN_REQUEST === $type) {
  1. && $container->getParameter('shopware.http.cache.enabled');
  2. if ($enabled && $container->has(CacheStore::class)) {
  3. $kernel = new static::$httpCacheClass($kernel, $container->get(CacheStore::class), null, ['debug' => $this->debug]);
  4. }
  5. $response = $kernel->handle($transformed, $type, $catch);
  6. // fire event to trigger runtime events like seo url headers
  7. $event = new BeforeSendResponseEvent($transformed, $response);
  8. $container->get('event_dispatcher')->dispatch($event);
in vendor/shopware/core/HttpKernel.php -> doHandle (line 81)
  1. if (!\is_bool($catch)) {
  2. Feature::triggerDeprecationOrThrow('v6.5.0.0', 'The third parameter `$catch` of `HttpKernel->handle()` will be typed to `bool`');
  3. }
  4. try {
  5. return $this->doHandle($request, (int) $type, (bool) $catch);
  6. } catch (Exception $e) {
  7. /** @var Params|array{url?: string} $connectionParams */
  8. $connectionParams = self::getConnection()->getParams();
  9. $message = str_replace([$connectionParams['url'] ?? null, $connectionParams['password'] ?? null, $connectionParams['user'] ?? null], '******', $e->getMessage());
HttpKernel->handle() in public/index.php (line 85)
  1. }
  2. } else {
  3. $kernel = new InstallerKernel($appEnv, $debug);
  4. }
  5. $result = $kernel->handle($request);
  6. if ($result instanceof Response) {
  7. $result->send();
  8. $kernel->terminate($request, $result);
  9. } else {

Lcobucci\JWT\Token\ InvalidTokenStructure

The JWT string must have two dots

  1. final class InvalidTokenStructure extends InvalidArgumentException implements Exception
  2. {
  3. public static function missingOrNotEnoughSeparators(): self
  4. {
  5. return new self('The JWT string must have two dots');
  6. }
  7. public static function arrayExpected(string $part): self
  8. {
  9. return new self($part . ' must be an array');
in vendor/lcobucci/jwt/src/Token/Parser.php :: missingOrNotEnoughSeparators (line 54)
  1. private function splitJwt(string $jwt): array
  2. {
  3. $data = explode('.', $jwt);
  4. if (count($data) !== 3) {
  5. throw InvalidTokenStructure::missingOrNotEnoughSeparators();
  6. }
  7. return $data;
  8. }
  1. $this->decoder = $decoder;
  2. }
  3. public function parse(string $jwt): TokenInterface
  4. {
  5. [$encodedHeaders, $encodedClaims, $encodedSignature] = $this->splitJwt($jwt);
  6. $header = $this->parseHeader($encodedHeaders);
  7. return new Plain(
  8. new DataSet($header, $encodedHeaders),
  1. $header = $request->getHeader('authorization');
  2. $jwt = \trim((string) \preg_replace('/^\s*Bearer\s/', '', $header[0]));
  3. try {
  4. // Attempt to parse the JWT
  5. $token = $this->jwtConfiguration->parser()->parse($jwt);
  6. } catch (\Lcobucci\JWT\Exception $exception) {
  7. throw OAuthServerException::accessDenied($exception->getMessage(), null, $exception);
  8. }
  9. try {
  1. /**
  2. * @return ServerRequestInterface
  3. */
  4. public function validateAuthorization(ServerRequestInterface $request)
  5. {
  6. $request = $this->decorated->validateAuthorization($request);
  7. $header = $request->getHeader('authorization');
  8. $jwt = trim(preg_replace('/^(?:\s+)?Bearer\s/', '', $header[0]) ?? '');
in vendor/league/oauth2-server/src/ResourceServer.php -> validateAuthorization (line 84)
  1. *
  2. * @return ServerRequestInterface
  3. */
  4. public function validateAuthenticatedRequest(ServerRequestInterface $request)
  5. {
  6. return $this->getAuthorizationValidator()->validateAuthorization($request);
  7. }
  8. }
  1. if (!$this->isRequestScoped($request, ApiContextRouteScopeDependant::class)) {
  2. return;
  3. }
  4. $psr7Request = $this->psrHttpFactory->createRequest($event->getRequest());
  5. $psr7Request = $this->resourceServer->validateAuthenticatedRequest($psr7Request);
  6. $request->attributes->add($psr7Request->getAttributes());
  7. }
  8. protected function getScopeRegistry(): RouteScopeRegistry
  1. $this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. *
  2. * @return TEvent
  3. */
  4. public function dispatch($event, ?string $eventName = null): object
  5. {
  6. $event = $this->dispatcher->dispatch($event, $eventName);
  7. if (!$event instanceof FlowEventAware) {
  8. return $event;
  9. }
  1. *
  2. * @return TEvent
  3. */
  4. public function dispatch($event, ?string $eventName = null): object
  5. {
  6. $event = $this->dispatcher->dispatch($event, $eventName);
  7. if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS', false)) {
  8. return $event;
  9. }
  1. $this->definitionRegistry = $definitionRegistry;
  2. }
  3. public function dispatch($event, ?string $eventName = null): object
  4. {
  5. $event = $this->dispatcher->dispatch($event, $eventName);
  6. if (Feature::isActive('FEATURE_NEXT_17858')) {
  7. return $event;
  8. }
  1. }
  2. $this->dispatch($nested, $name);
  3. }
  4. }
  5. return $this->dispatcher->dispatch($event, $eventName);
  6. }
  7. /**
  8. * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9. */
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. if (false === $controller = $this->resolver->getController($request)) {
  2. throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));
  3. }
  4. $event = new ControllerEvent($this, $controller, $request, $type);
  5. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);
  6. $controller = $event->getController();
  7. // controller arguments
  8. $arguments = $this->argumentResolver->getArguments($request, $controller);
  1. {
  2. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3. $this->requestStack->push($request);
  4. try {
  5. return $this->handleRaw($request, $type);
  6. } catch (\Exception $e) {
  7. if ($e instanceof RequestExceptionInterface) {
  8. $e = new BadRequestHttpException($e->getMessage(), $e);
  9. }
  10. if (false === $catch) {
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. if (!IpUtils::checkIp('127.0.0.1', $trustedProxies)) {
  2. Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
  3. }
  4. try {
  5. return $kernel->handle($request, $type, $catch);
  6. } finally {
  7. // restore global state
  8. Request::setTrustedProxies($trustedProxies, $trustedHeaderSet);
  9. }
  10. }
  1. if ($this->surrogate) {
  2. $this->surrogate->addSurrogateCapability($request);
  3. }
  4. // always a "master" request (as the real master request can be in cache)
  5. $response = SubRequestHandler::handle($this->kernel, $request, HttpKernelInterface::MAIN_REQUEST, $catch);
  6. /*
  7. * Support stale-if-error given on Responses or as a config option.
  8. * RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
  9. * Cache-Control directives) that
  1. // avoid that the backend sends no content
  2. $subRequest->headers->remove('If-Modified-Since');
  3. $subRequest->headers->remove('If-None-Match');
  4. $response = $this->forward($subRequest, $catch);
  5. if ($response->isCacheable()) {
  6. $this->store($request, $response);
  7. }
  1. }
  2. if (null === $entry) {
  3. $this->record($request, 'miss');
  4. return $this->fetch($request, $catch);
  5. }
  6. if (!$this->isFreshEnough($request, $entry)) {
  7. $this->record($request, 'stale');
  1. reload the cache by fetching a fresh response and caching it (if possible).
  2. */
  3. $this->record($request, 'reload');
  4. $response = $this->fetch($request, $catch);
  5. } else {
  6. $response = $this->lookup($request, $catch);
  7. }
  8. $this->restoreResponseBody($request, $response);
  9. if (HttpKernelInterface::MAIN_REQUEST === $type) {
  1. && $container->getParameter('shopware.http.cache.enabled');
  2. if ($enabled && $container->has(CacheStore::class)) {
  3. $kernel = new static::$httpCacheClass($kernel, $container->get(CacheStore::class), null, ['debug' => $this->debug]);
  4. }
  5. $response = $kernel->handle($transformed, $type, $catch);
  6. // fire event to trigger runtime events like seo url headers
  7. $event = new BeforeSendResponseEvent($transformed, $response);
  8. $container->get('event_dispatcher')->dispatch($event);
in vendor/shopware/core/HttpKernel.php -> doHandle (line 81)
  1. if (!\is_bool($catch)) {
  2. Feature::triggerDeprecationOrThrow('v6.5.0.0', 'The third parameter `$catch` of `HttpKernel->handle()` will be typed to `bool`');
  3. }
  4. try {
  5. return $this->doHandle($request, (int) $type, (bool) $catch);
  6. } catch (Exception $e) {
  7. /** @var Params|array{url?: string} $connectionParams */
  8. $connectionParams = self::getConnection()->getParams();
  9. $message = str_replace([$connectionParams['url'] ?? null, $connectionParams['password'] ?? null, $connectionParams['user'] ?? null], '******', $e->getMessage());
HttpKernel->handle() in public/index.php (line 85)
  1. }
  2. } else {
  3. $kernel = new InstallerKernel($appEnv, $debug);
  4. }
  5. $result = $kernel->handle($request);
  6. if ($result instanceof Response) {
  7. $result->send();
  8. $kernel->terminate($request, $result);
  9. } else {

Logs

Level Channel Message
INFO 08:23:39 php Deprecated: Constant NumberFormatter::TYPE_CURRENCY is deprecated
{
    "exception": {}
}
INFO 08:23:39 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://dev.m-medientechnik.de/_profiler/latest?ip=3.22.71.149",
    "method": "GET"
}
INFO 08:23:39 php User Deprecated: Since shopware/core : Class "Shopware\Storefront\Framework\Csrf\CsrfRouteListener" is deprecated and will be removed in v6.5.0.0.
{
    "exception": {}
}
INFO 08:23:39 php User Deprecated: Since shopware/core : Class "Shopware\Storefront\Framework\Csrf\CsrfRouteListener" is deprecated and will be removed in v6.5.0.0.
{
    "exception": {}
}
INFO 08:23:39 php User Deprecated: Since shopware/core : Class "Shopware\Core\Content\Mail\Service\MailerTransportFactory" is deprecated and will be removed in v6.5.0.0.
{
    "exception": {}
}
INFO 08:23:39 php User Deprecated: Since shopware/core : Class "Shopware\Core\Content\Mail\Service\MailerTransportFactory" is deprecated and will be removed in v6.5.0.0.
{
    "exception": {}
}
INFO 08:23:39 php User Deprecated: Since shopware/core : Class "Shopware\Storefront\Framework\Csrf\CsrfRouteListener" is deprecated and will be removed in v6.5.0.0.
{
    "exception": {}
}
INFO 08:23:39 php User Deprecated: Since shopware/core : Class "Shopware\Storefront\Framework\Csrf\CsrfRouteListener" is deprecated and will be removed in v6.5.0.0.
{
    "exception": {}
}

Stack Traces 2

[2/2] OAuthServerException
League\OAuth2\Server\Exception\OAuthServerException:
The resource owner or authorization server denied the request.

  at vendor/league/oauth2-server/src/Exception/OAuthServerException.php:243
  at League\OAuth2\Server\Exception\OAuthServerException::accessDenied()
     (vendor/league/oauth2-server/src/AuthorizationValidators/BearerTokenValidator.php:103)
  at League\OAuth2\Server\AuthorizationValidators\BearerTokenValidator->validateAuthorization()
     (vendor/shopware/core/Framework/Api/OAuth/BearerTokenValidator.php:42)
  at Shopware\Core\Framework\Api\OAuth\BearerTokenValidator->validateAuthorization()
     (vendor/league/oauth2-server/src/ResourceServer.php:84)
  at League\OAuth2\Server\ResourceServer->validateAuthenticatedRequest()
     (vendor/shopware/core/Framework/Api/EventListener/Authentication/ApiAuthenticationListener.php:107)
  at Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener->validateRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:56)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:98)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (vendor/shopware/core/Framework/Event/BusinessEventDispatcher.php:55)
  at Shopware\Core\Framework\Event\BusinessEventDispatcher->dispatch()
     (vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:37)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:151)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:482)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:455)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:349)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:227)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle()
     (vendor/shopware/core/HttpKernel.php:156)
  at Shopware\Core\HttpKernel->doHandle()
     (vendor/shopware/core/HttpKernel.php:81)
  at Shopware\Core\HttpKernel->handle()
     (public/index.php:85)                
[1/2] InvalidTokenStructure
Lcobucci\JWT\Token\InvalidTokenStructure:
The JWT string must have two dots

  at vendor/lcobucci/jwt/src/Token/InvalidTokenStructure.php:13
  at Lcobucci\JWT\Token\InvalidTokenStructure::missingOrNotEnoughSeparators()
     (vendor/lcobucci/jwt/src/Token/Parser.php:54)
  at Lcobucci\JWT\Token\Parser->splitJwt()
     (vendor/lcobucci/jwt/src/Token/Parser.php:31)
  at Lcobucci\JWT\Token\Parser->parse()
     (vendor/league/oauth2-server/src/AuthorizationValidators/BearerTokenValidator.php:101)
  at League\OAuth2\Server\AuthorizationValidators\BearerTokenValidator->validateAuthorization()
     (vendor/shopware/core/Framework/Api/OAuth/BearerTokenValidator.php:42)
  at Shopware\Core\Framework\Api\OAuth\BearerTokenValidator->validateAuthorization()
     (vendor/league/oauth2-server/src/ResourceServer.php:84)
  at League\OAuth2\Server\ResourceServer->validateAuthenticatedRequest()
     (vendor/shopware/core/Framework/Api/EventListener/Authentication/ApiAuthenticationListener.php:107)
  at Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener->validateRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:56)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:98)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (vendor/shopware/core/Framework/Event/BusinessEventDispatcher.php:55)
  at Shopware\Core\Framework\Event\BusinessEventDispatcher->dispatch()
     (vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:37)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:151)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:482)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:455)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:349)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:227)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle()
     (vendor/shopware/core/HttpKernel.php:156)
  at Shopware\Core\HttpKernel->doHandle()
     (vendor/shopware/core/HttpKernel.php:81)
  at Shopware\Core\HttpKernel->handle()
     (public/index.php:85)