We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beef4e7 commit f9f02baCopy full SHA for f9f02ba
1 file changed
solid/lib/Controller/SolidWebhookController.php
@@ -50,7 +50,8 @@ public function __construct($AppName, IRootFolder $rootFolder, IRequest $request
50
51
$this->DPop = new DPop();
52
try {
53
- $this->webId = $this->DPop->getWebId($request);
+ $rawRequest = \Laminas\Diactoros\ServerRequestFactory::fromGlobals($_SERVER, $_GET, $_POST, $_COOKIE, $_FILES);
54
+ $this->webId = $this->DPop->getWebId($rawRequest);
55
} catch(\Exception $e) {
56
$response = $this->resourceServer->getResponse()->withStatus(409, "Invalid token");
57
return $this->respond($response);
0 commit comments