OAuth APP for create meeting

Description
App OAuth in a web

Error
Hello!, I’m new using the API Zoom OAuth.
Basically I want my users to create a meeting from my website. But they can’t …

Is there a way to use the OAuth APP and let them create a meeting without that permission?

Downline is the function I use to get a token.

Thank you!

indent preformatted text by 4 spaces

$client = new GuzzleHttp\Client([‘base_uri’ => ‘https://zoom.us’]);

$response = $client->request('POST', '/oauth/token', [

    "headers" => [

        "Authorization" => "Basic ". base64_encode(CLIENT_ID.':'.CLIENT_SECRET)

    ],

    'form_params' => [

        "grant_type" => "authorization_code",

        "code" => $_GET['code'],

        "redirect_uri" => REDIRECT_URI

    ],

]);

Which App Type (OAuth / Chatbot / JWT / Webhook)?
Knowing the endpoint/s can help us to identify your issue faster. Please link the ones you need help/have a question with.

Which Endpoint/s?
Knowing the API endpoint/s can help us to identify your issue faster. Please link the ones you need help/have a question with.

How To Reproduce (If applicable)
Steps to reproduce the behavior:

  1. Request URL / Headers (without credentials) / Body
  2. See error

Screenshots (If applicable)
If applicable, add screenshots to help explain your problem.

Additional context
Add any other context about the problem here.

Hey @drodriguezescalante9,

Only published apps can be installed by external Zoom users. You can still test your app if you install it yourself before publishing it.

Thanks,
Tommy