提问人:allaiza 提问时间:11/15/2023 最后编辑:nice_devallaiza 更新时间:11/15/2023 访问量:41
Zoom API 与 Laravel 集成
zoom api integration with laravel
问:
这是我收到的错误:未设置客户端 ID、客户端密码或重定向 URI。
这是我的代码:
public function createMeeting($data)
{
// Check if clientId, clientSecret, and redirectUri are set
if (!$this->clientId || !$this->clientSecret || !$this->redirectUri) {
throw new \Exception('Client ID, client secret, or redirect URI not set.');
}
我期待我应该在这里放什么,我使用 OAuth 服务在我的 Laravel 项目中应用 Zoom 集成
答: 暂无答案
评论