19. SocialEngine\Cloud\Exceptions\Unauthorized\MissingSignature
…/­src/­Filters/­OAuth.php29
18. SocialEngine\Cloud\Filters\OAuth filter
<#unknown>0
17. call_user_func_array
…/­vendor/­laravel/­framework/­src/­Illuminate/­Events/­Dispatcher.php323
16. Illuminate\Events\Dispatcher Illuminate\Events\{closure}
<#unknown>0
15. call_user_func_array
…/­vendor/­laravel/­framework/­src/­Illuminate/­Events/­Dispatcher.php199
14. Illuminate\Events\Dispatcher fire
…/­vendor/­laravel/­framework/­src/­Illuminate/­Events/­Dispatcher.php154
13. Illuminate\Events\Dispatcher until
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1473
12. Illuminate\Routing\Router callRouteFilter
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1435
11. Illuminate\Routing\Router callAttachedBefores
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1322
10. Illuminate\Routing\Router callRouteBefore
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1029
9. Illuminate\Routing\Router dispatchToRoute
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1001
8. Illuminate\Routing\Router dispatch
…/­vendor/­dingo/­api/­src/­Routing/­Router.php205
7. Dingo\Api\Routing\Router dispatch
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php775
6. Illuminate\Foundation\Application dispatch
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php745
5. Illuminate\Foundation\Application handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Session/­Middleware.php72
4. Illuminate\Session\Middleware handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Cookie/­Queue.php47
3. Illuminate\Cookie\Queue handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Cookie/­Guard.php51
2. Illuminate\Cookie\Guard handle
…/­vendor/­stack/­builder/­src/­Stack/­StackedHttpKernel.php23
1. Stack\StackedHttpKernel handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php641
0. Illuminate\Foundation\Application run
…/­public/­index.php49

SocialEngine \ Cloud \ Exceptions \ Unauthorized \ MissingSignature

Callstack information; navigate with mouse or keyboard using Ctrl+↑ or Ctrl+↓
Copy-to-clipboard button
Exception message and its type
Code snippet where the error was thrown
Server state information
Application provided context information
SocialEngine\Cloud\Exceptions\Unauthorized\MissingSignature thrown with message "Request did not have sig and/or guid and nothing in session" Stacktrace: #19 SocialEngine\Cloud\Exceptions\Unauthorized\MissingSignature in /app/src/Filters/OAuth.php:29 #18 SocialEngine\Cloud\Filters\OAuth:filter in <#unknown>:0 #17 call_user_func_array in /app/vendor/laravel/framework/src/Illuminate/Events/Dispatcher.php:323 #16 Illuminate\Events\Dispatcher:Illuminate\Events\{closure} in <#unknown>:0 #15 call_user_func_array in /app/vendor/laravel/framework/src/Illuminate/Events/Dispatcher.php:199 #14 Illuminate\Events\Dispatcher:fire in /app/vendor/laravel/framework/src/Illuminate/Events/Dispatcher.php:154 #13 Illuminate\Events\Dispatcher:until in /app/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1473 #12 Illuminate\Routing\Router:callRouteFilter in /app/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1435 #11 Illuminate\Routing\Router:callAttachedBefores in /app/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1322 #10 Illuminate\Routing\Router:callRouteBefore in /app/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1029 #9 Illuminate\Routing\Router:dispatchToRoute in /app/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1001 #8 Illuminate\Routing\Router:dispatch in /app/vendor/dingo/api/src/Routing/Router.php:205 #7 Dingo\Api\Routing\Router:dispatch in /app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:775 #6 Illuminate\Foundation\Application:dispatch in /app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:745 #5 Illuminate\Foundation\Application:handle in /app/vendor/laravel/framework/src/Illuminate/Session/Middleware.php:72 #4 Illuminate\Session\Middleware:handle in /app/vendor/laravel/framework/src/Illuminate/Cookie/Queue.php:47 #3 Illuminate\Cookie\Queue:handle in /app/vendor/laravel/framework/src/Illuminate/Cookie/Guard.php:51 #2 Illuminate\Cookie\Guard:handle in /app/vendor/stack/builder/src/Stack/StackedHttpKernel.php:23 #1 Stack\StackedHttpKernel:handle in /app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:641 #0 Illuminate\Foundation\Application:run in /app/public/index.php:49

Request did not have sig and/or guid and nothing in session

        if (Session::has('connect-cache-uuid') && $missingSigAndGuid) {
            // no validation is required because session cannot be written without doing validation first
            // said differently this is a pass through for when request returns from the authorizing party
            return;
        }
 
        if ($missingSigAndGuid && Session::has('oauth-session-cache-uuid') === false) {
            throw new Unauthorized\MissingSignature();
        }
 
<#unknown>
			$callable = array($container->make($segments[0]), $method);
 
			// We will make a callable of the listener instance and a method that should
			// be called on that instance, then we will pass in the arguments that we
			// received in this method into this listener class instance's methods.
			$data = func_get_args();
 
			return call_user_func_array($callable, $data);
		};
	}
<#unknown>
		// payload to each of them so that they receive each of these arguments.
		if ( ! is_array($payload)) $payload = array($payload);
 
		$this->firing[] = $event;
 
		foreach ($this->getListeners($event) as $listener)
		{
			$response = call_user_func_array($listener, $payload);
 
			// If a response is returned from the listener and event halting is enabled
	 *
	 * @param  string  $event
	 * @param  array   $payload
	 * @return mixed
	 */
	public function until($event, $payload = array())
	{
		return $this->fire($event, $payload, true);
	}
 
	 */
	public function callRouteFilter($filter, $parameters, $route, $request, $response = null)
	{
		if ( ! $this->filtering) return null;
 
		$data = array_merge(array($route, $request, $response), $parameters);
 
		return $this->events->until('router.filter: '.$filter, $this->cleanFilterParameters($data));
	}
 
	 * @param  \Illuminate\Http\Request  $request
	 * @return mixed
	 */
	protected function callAttachedBefores($route, $request)
	{
		foreach ($route->beforeFilters() as $filter => $parameters)
		{
			$response = $this->callRouteFilter($filter, $parameters, $route, $request);
 
			if ( ! is_null($response)) return $response;
	 * @param  \Illuminate\Http\Request  $request
	 * @return mixed
	 */
	public function callRouteBefore($route, $request)
	{
		$response = $this->callPatternFilters($route, $request);
 
		return $response ?: $this->callAttachedBefores($route, $request);
	}
 
		$route = $this->findRoute($request);
 
		$this->events->fire('router.matched', array($route, $request));
 
		// Once we have successfully matched the incoming request to a given route we
		// can call the before filters on that route. This works similar to global
		// filters in that if a response is returned we will not call the route.
		$response = $this->callRouteBefore($route, $request);
 
		if (is_null($response))
		// If no response was returned from the before filter, we will call the proper
		// route instance to get the response. If no route is found a response will
		// still get returned based on why no routes were found for this request.
		$response = $this->callFilter('before', $request);
 
		if (is_null($response))
		{
			$response = $this->dispatchToRoute($request);
		}
 
     * @throws \Exception
     *
     * @return \Illuminate\Http\Response|\Dingo\Api\Http\Response
     */
    public function dispatch(Request $request)
    {
        if (! $this->isApiRequest($request)) {
            return parent::dispatch($request);
        }
 
		}
 
		if ($this->runningUnitTests() && ! $this['session']->isStarted())
		{
			$this['session']->start();
		}
 
		return $this['router']->dispatch($this->prepareRequest($request));
	}
 
	{
		try
		{
			$this->refreshRequest($request = Request::createFromBase($request));
 
			$this->boot();
 
			return $this->dispatch($request);
		}
		catch (\Exception $e)
		if ($this->sessionConfigured())
		{
			$session = $this->startSession($request);
 
			$request->setSession($session);
		}
 
		$response = $this->app->handle($request, $type, $catch);
 
		// Again, if the session has been configured we will need to close out the session
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @param  int   $type
	 * @param  bool  $catch
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		$response = $this->app->handle($request, $type, $catch);
 
		foreach ($this->cookies->getQueuedCookies() as $cookie)
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @param  int   $type
	 * @param  bool  $catch
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		return $this->encrypt($this->app->handle($this->decrypt($request), $type, $catch));
	}
 
    {
        $this->app = $app;
        $this->middlewares = $middlewares;
    }
 
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        return $this->app->handle($request, $type, $catch);
    }
 
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @return void
	 */
	public function run(SymfonyRequest $request = null)
	{
		$request = $request ?: $this['request'];
 
		$response = with($stack = $this->getStackedClient())->handle($request);
 
		$response->send();
| Once we have the application, we can simply call the run method,
| which will execute the request and send the response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have whipped up for them.
|
*/
 
$app->run();
 
empty
empty
empty
empty
empty
Key Value
REDIRECT_STATUS 200
HTTP_HOST www.blockchaincompany.info
HTTP_ACCEPT_ENCODING gzip, br
HTTP_X_FORWARDED_FOR 3.230.128.106
HTTP_CF_RAY 866c8d496f6b825a-IAD
HTTP_X_FORWARDED_PROTO https
HTTP_CF_VISITOR {"scheme":"https"}
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_REFERER http://www.blockchaincompany.info/oauth1/twitter
HTTP_CF_CONNECTING_IP 3.230.128.106
HTTP_CDN_LOOP cloudflare
HTTP_CF_IPCOUNTRY US
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
SERVER_SIGNATURE <address>Apache/2.4.10 (Debian) Server at www.blockchaincompany.info Port 80</address>
SERVER_SOFTWARE Apache/2.4.10 (Debian)
SERVER_NAME www.blockchaincompany.info
SERVER_ADDR 172.18.0.7
SERVER_PORT 80
REMOTE_ADDR 172.18.0.2
DOCUMENT_ROOT /app/public
REQUEST_SCHEME http
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /app/public
SERVER_ADMIN [no address given]
SCRIPT_FILENAME /app/public/index.php
REMOTE_PORT 46260
REDIRECT_URL /oauth1/twitter
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /oauth1/twitter
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710841760.255
REQUEST_TIME 1710841760
argv Array ( )
argc 0
REMOTE_LOGGING_ENABLED
APP_DEBUG
API_DEBUG 1
LOCAL_LOGGING_ENABLED 1
AWS_KEY AKIAT7SW5O367WE4AXWZ
AWS_SECRET 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
AWS_S3_BUCKET bcinfo
MYSQL_USERNAME root
MYSQL_PASSWORD scowl59*cork
REQUEST_UTIME 1710841760.3118
Key Value
APACHE_PID_FILE /var/run/apache2/apache2.pid
PHP_XDEBUG 0
HOSTNAME 8c26f19e4802
APACHE_RUN_USER www-data
PHP_TIMEZONE UTC
PHP_INI_DIR /usr/local/etc/php
PHP_ASC_URL https://secure.php.net/get/php-5.6.33.tar.xz.asc/from/this/mirror
MYSQL_DATABASE revolution
MYSQL_PASSWORD scowl59*cork
PHP_CFLAGS -fstack-protector-strong -fpic -fpie -O2
PHP_MD5
SMTP_PORT
PHPIZE_DEPS autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c
PHP_URL https://secure.php.net/get/php-5.6.33.tar.xz/from/this/mirror
REDIS_HOST redis
APACHE_ENVVARS /etc/apache2/envvars
PHP_LDFLAGS -Wl,-O1 -Wl,--hash-style=both -pie
APACHE_LOG_DIR /var/log/apache2
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PHP_CPPFLAGS -fstack-protector-strong -fpic -fpie -O2
GPG_KEYS 0BD78B5F97500D450838F95DFE857D9A90D90EC1 6E4F6AB321FDC07F2C332E3AC2BF0BC433CFC8B3
VOLUME_PATH /app/public
PWD /app
LANG C
APACHE_RUN_GROUP www-data
SMTP_HOST
MYSQL_USERNAME root
SHLVL 0
REDIS_PORT 6379
PHP_SHA256 9004995fdf55f111cd9020e8b8aff975df3d8d4191776c601a46988c375f3553
APACHE_CONFDIR /etc/apache2
PHP_EXTRA_BUILD_DEPS apache2-dev
MYSQL_HOST db
APP_ENV local
APACHE_LOCK_DIR /var/lock/apache2
APACHE_RUN_DIR /var/run/apache2
MYSQL_PORT 3306
PHP_VERSION 5.6.33
PHP_EXTRA_CONFIGURE_ARGS --with-apxs2
REMOTE_LOGGING_ENABLED
APP_DEBUG
API_DEBUG 1
LOCAL_LOGGING_ENABLED 1
AWS_KEY AKIAT7SW5O367WE4AXWZ
AWS_SECRET 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
AWS_S3_BUCKET bcinfo
0. Whoops\Handler\PrettyPageHandler