$a->argv, 'header' => $_SERVER, 'body' => $postdata], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE)); Logger::log('Incoming message stored under ' . $tempfile); } // @TODO: Replace with parameter from router if (!empty($a->argv[1])) { $user = DBA::selectFirst('user', ['uid'], ['nickname' => $a->argv[1]]); if (!DBA::isResult($user)) { throw new \Friendica\Network\HTTPException\NotFoundException(); } $uid = $user['uid']; } else { $uid = 0; } ActivityPub\Receiver::processInbox($postdata, $_SERVER, $uid); throw new \Friendica\Network\HTTPException\AcceptedException(); } }