how to Integrate with Website using Php codeigniter

Hiii

How to i integrate zoom in my website. I using codeigniter PHP can give me the suggestion.

Our APIs are platform and code agnostic. You can use our REST APIs to integrate zoom into your PHP code. 

please if there any sample app just put it here thank you asap.

Hey @lakruroshan,

You can see code examples at the bottom of our docs in any language.

Thanks,
Tommy

i didnt understand that can you send me an example it would be really appriciate

@lakruroshan using the link Tommy sent, you can see sample code in a number of programming languages to make requests to the API:

<?php

$client = new http\Client;
$request = new http\Client\Request;

$request->setRequestUrl('https://api.zoom.us/v2/users');
$request->setRequestMethod('GET');
$request->setQuery(new http\QueryString(array(
  'page_number' => '1',
  'page_size' => '30',
  'status' => 'active'
)));

$request->setHeaders(array(
  'authorization' => 'Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJhdWQiOm51bGwsImlzcyI6InZlVmFjM1pUUV8tT3JTR1hRaDNvUEEiLCJleHAiOjE1ODczNDU4NTUsImlhdCI6MTU4NzM0MDQ1NX0.UP9SEMsrh10zBfwrIyAeo-pMyOlRYVqXMhW4TGZemM0'
));

$client->enqueue($request)->send();
$response = $client->getResponse();

echo $response->getBody();