mesilov / yandex-dialogs-php-sdk
Yandex dialogs API PHP-wrapper
dev-master
2018-08-08 20:08 UTC
Requires
- php: >=7.1
- ext-json: *
Requires (Dev)
This package is auto-updated.
Last update: 2024-11-20 09:54:23 UTC
README
Репозиторий PHP-библиотеки для облегчения работы с диалогами
Пример использования
// получаем входящий API-запрос $apiRequestArray = json_decode(trim(file_get_contents('php://input')), true); $dialogRequest = Yandex\Dialogs\Webhook\Request\Fabric::initFromArray($apiRequestArray); $responseFabric = new Yandex\Dialogs\Webhook\Response\Fabric($dialogRequest); $button1 = new Yandex\Dialogs\Webhook\Response\DTO\Buttons\Button(); $button1 ->setTitle('Кнопка1') ->setUrl('https://ya.ru'); $button2 = new Yandex\Dialogs\Webhook\Response\DTO\Buttons\Button(); $button2 ->setTitle('Кнопка2'); $response = $responseFabric ->setText('Привет') ->setTts('Привет') ->addButton($button1) ->addButton($button2) ->buildResponse(); header('Content-Type: application/json'); print(json_encode(Yandex\Dialogs\Webhook\Response\Formatters\Formatter::toArray($response), JSON_HEX_TAG | JSON_HEX_AMP | JSON_HEX_APOS | JSON_HEX_QUOT));