We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86e591b commit 984955eCopy full SHA for 984955e
tests/OpenTokTest/OpenTokTest.php
@@ -8,7 +8,6 @@
8
use Lcobucci\JWT\Signer\Hmac\Sha256;
9
use Lcobucci\JWT\Signer\Key\InMemory;
10
use Lcobucci\JWT\Token;
11
-use Lcobucci\JWT\Token\Plain;
12
use OpenTok\Render;
13
use OpenTok\Role;
14
use OpenTok\Layout;
@@ -184,6 +183,7 @@ public function testCanUseVonageAuth(): void
184
183
185
$token = $config->parser()->parse($authString);
186
$this->assertInstanceOf(Token::class, $token);
+ $this->assertEquals($this->API_KEY, $token->claims()->get('application_id'));
187
}
188
189
public function testCanGetRender(): void
0 commit comments