Gajus\Fuss\SignedRequest::__construct PHP Method

__construct() public method

public __construct ( App $app, string $raw_signed_request )
$app App
$raw_signed_request string It is base64url encoded and signed with an HMAC version of your App Secret, based on the OAuth 2.0 spec.
    public function __construct(App $app, $raw_signed_request)
    {
        $this->app = $app;
        $this->signed_request = $this->parse($raw_signed_request);
    }