A powerfull PHP library for the Bitrix24 REST API
Bitrix24 API documentation - Russian
Bitrix24 API documentation - English
b24io5gb
— add 5GB on your Bitrix24b24iousers
— add 12 users on your Bitrix24
- php: >=5.3.2
- ext-json: *
- ext-curl: *
- Monolog: optional
<?php
use Monolog\Logger;
use Monolog\Handler\StreamHandler;
// create a log channel
$log = new Logger('bitrix24');
$log->pushHandler(new StreamHandler('path/to/your.log', Logger::DEBUG));
// init lib
$obB24App = new \Bitrix24\Bitrix24(false, $log);
$obB24App->setApplicationScope($arParams['B24_APPLICATION_SCOPE']);
$obB24App->setApplicationId($arParams['B24_APPLICATION_ID']);
$obB24App->setApplicationSecret($arParams['B24_APPLICATION_SECRET']);
// set user-specific settings
$obB24App->setDomain($arParams['DOMAIN']);
$obB24App->setMemberId($arParams['MEMBER_ID']);
$obB24App->setAccessToken($arParams['AUTH_ID']);
$obB24App->setRefreshToken($arParams['REFRESH_ID']);
// get information about current user from bitrix24
$obB24User = new \Bitrix24\User\User($obB24App);
$arCurrentB24User = $obB24User->current();
Add "mesilov/bitrix24-php-sdk": "dev-master"
to composer.json
of your application. Or clone repo to your project.
Bugs and feature request are tracked on GitHub
bitrix24-php-sdk is licensed under the MIT License - see the MIT-LICENSE.txt
file for details
Maxim Mesilov - [email protected] - https://twitter.com/mesilov
See also the list of contributors which participated in this project.
email: [email protected]