Views: 7626
Last Modified: 22.08.2022

Within our course, we interface with Bitrix24 via PHP.

All examples are provided with the use of restCommand functions:

restCommand('imbot.message.add', Array(
   "DIALOG_ID" => $_REQUEST['data']['PARAMS']['DIALOG_ID'],
   "MESSAGE" => "[put=/search]Input search string[/put]",
), $_REQUEST["auth"]);
where:
First parameter - API name (imbot.message.add);
Second parameter - API data return (Array(...))
Third parameter - Data for request authorization ($_REQUEST["auth"]).

Note: This function is used as an example. You can use your own function, based on interfacing protocol, or BX24.callMethod javascript-method, or a partner development bitrix24-php-sdk.

RestCommand function

/**
 * Send rest query to Bitrix24.
 *
 * @param $method - Rest method, ex: methods
 * @param array $params - Method params, ex: Array()
 * @param array $auth - Authorize data, ex: Array('domain' => 'https://test.bitrix24.com', 'access_token' => '7inpwszbuu8vnwr5jmabqa467rqur7u6')
 * @param boolean $authRefresh - If authorize is expired, refresh token
 * @return mixed
 */
function restCommand($method, array $params = Array(), array $auth = Array(), $authRefresh = true)
{
   $queryUrl = "https://".$auth["domain"]."/rest/".$method;
   $queryData = http_build_query(array_merge($params, array("auth" => $auth["access_token"])));
   
   $curl = curl_init();

   curl_setopt_array($curl, array(
      CURLOPT_POST => 1,
      CURLOPT_HEADER => 0,
      CURLOPT_RETURNTRANSFER => 1,
      CURLOPT_SSL_VERIFYPEER => 1,
      CURLOPT_URL => $queryUrl,
      CURLOPT_POSTFIELDS => $queryData,
   ));

   $result = curl_exec($curl);
   curl_close($curl);

   $result = json_decode($result, 1);

   if ($authRefresh && isset($result['error']) && in_array($result['error'], array('expired_token', 'invalid_token')))
   {
      $auth = restAuth($auth);
      if ($auth)
      {
         $result = restCommand($method, $params, $auth, false);
      }
   }

   return $result;
}

RestAuth function

/**
 * Get new authorize data if you authorize is expire.
 *
 * @param array $auth - Authorize data, ex: Array('domain' => 'https://test.bitrix24.com', 'access_token' => '7inpwszbuu8vnwr5jmabqa467rqur7u6')
 * @return bool|mixed
 */
function restAuth($auth)
{
   if (!CLIENT_ID || !CLIENT_SECRET)
      return false;

   if(!isset($auth['refresh_token']) || !isset($auth['scope']) || !isset($auth['domain']))
      return false;

   $queryUrl = 'https://'.$auth['domain'].'/oauth/token/';
   $queryData = http_build_query($queryParams = array(
      'grant_type' => 'refresh_token',
      'client_id' => CLIENT_ID,
      'client_secret' => CLIENT_SECRET,
      'refresh_token' => $auth['refresh_token'],
      'scope' => $auth['scope'],
   ));
   
   $curl = curl_init();

   curl_setopt_array($curl, array(
      CURLOPT_HEADER => 0,
      CURLOPT_RETURNTRANSFER => 1,
      CURLOPT_URL => $queryUrl.'?'.$queryData,
   ));

   $result = curl_exec($curl);
   curl_close($curl);

   $result = json_decode($result, 1);
   
   return $result;
}




Courses developed by Bitrix24