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 0a9214e commit 906240cCopy full SHA for 906240c
src/Client.php
@@ -439,7 +439,9 @@ protected function needsKeypairAuthentication(\Psr\Http\Message\RequestInterface
439
$path = $request->getUri()->getPath();
440
$isCallEndpoint = strpos($path, '/v1/calls') === 0;
441
$isRecordingUrl = strpos($path, '/v1/files') === 0;
442
+ $isStitchEndpoint = strpos($path, '/beta/conversation') === 0;
443
+ $isUserEndpoint = strpos($path, '/beta/users') === 0;
444
- return $isCallEndpoint || $isRecordingUrl;
445
+ return $isCallEndpoint || $isRecordingUrl || $isStitchEndpoint || $isUserEndpoint;
446
}
447
0 commit comments