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
I'm calling the handler in my platform oidc/auth controller like this: $psrRequest = $this->requestFactory->createServerRequest($request->getMethod(), $request->getRequestUri()); return $this->handler->handle($psrRequest);
but it triggers a RuntimeException with this error: Resources are not supported in serialized data. Path: Nyholm\Psr7\Stream -> Nyholm\Psr7\Response
because the serializer finds a property of type resource...
Any idea what might be wrong? Since I'm using the bundle handler I'm not really sure how to avoid it.
The text was updated successfully, but these errors were encountered:
if you are talking about making your application offering an OIDC auth endpoint (as platform) via the LTI symfony bundle, you have nothing else to do than making sure the flex recipe correctly enabled it (it's provided by the bundle so you don't have even to code it)
I'm calling the handler in my platform oidc/auth controller like this:
$psrRequest = $this->requestFactory->createServerRequest($request->getMethod(), $request->getRequestUri()); return $this->handler->handle($psrRequest);
but it triggers a RuntimeException with this error:
Resources are not supported in serialized data. Path: Nyholm\Psr7\Stream -> Nyholm\Psr7\Response
because the serializer finds a property of type resource...
Any idea what might be wrong? Since I'm using the bundle handler I'm not really sure how to avoid it.
The text was updated successfully, but these errors were encountered: