20steps / api-ai-webhook-php
API AI Webhook interface for PHP
Requires
- php: >=7.0
Requires (Dev)
- phpunit/phpunit: ~4.6
This package is not auto-updated.
Last update: 2024-11-10 04:27:41 UTC
README
This library provides a convient interface for developing Webhooks for API AI and Google Assistant.
Info
Work in progress.
Capabilities:
- Basic serialization/deserialization
- Basic support for rich responses for Google Assistant
Usage
Install via composer: composer require 20steps/api-ai-webhook-php
.
Requests
When API AI triggers your webhook, a HTTP request will be sent to the URL you specified for your app.
You can get the JSON
body of the request like so:
$rawData = $request->getContent(); // This is how you would retrieve this with Laravel or Symfony 2. $request = new \APIAI\Request\Request($rawData); $request = $request->fromData();
The library expect raw request data, not parsed JSON as it needs to validate the request signature.
You can determine the type of the request with instanceof
, e.g.:
if ($apiaiRequest instanceof IntentRequest) { // Handle intent here }
Response
You can build an APIAI response with the Response
class. You can optionally set a display text or add basic cards for Google Assistant.
Here's a few examples.
$response = new \APIAI\Response\Response('my-assistant'); $response->respond('Cooool. I\'ll lower the temperature a bit for you!') ->withDisplayText('Temperature decreased by 2 degrees') ->withCard('My card title','My formatted text')
To output the response, simply use the ->render()
function, e.g. in Laravel you would create the response like so:
return response()->json($response->render());
In vanilla PHP:
header('Content-Type: application/json'); echo json_encode($response->render()); exit;