sapcai/sdk-php

This package is abandoned and no longer maintained. No replacement package was suggested.

The official PHP SDK of SAP Conversational AI

4.0.0 2018-08-10 12:59 UTC

README

alt text

SAP Conversational AI - SDK PHP

SAP Conversational AI official SDK in PHP

🚨 Sunset of Open Source SDKs for SAP Conversational AI

SAP Conversational AI provides several SDKs, which are all open-source and hosted on GitHub.
Starting from January 2021, please note that we inform you that the SDKs will not be available anymore and the public repository of the project will be archived from GitHub.

✨ Why are we sunsetting our SDKs?

Firstly, we noticed over the past year that these SDKs were not used much by our users.
This is because our platform usage has become easier, including the APIs.

Secondly, our APIs have undergone major changes. We would need to adapt the SDKs in order to keep them working, which will lead to a significant cost from our side.

Hence, we decided to sunset this open source version starting from January 2021.

✨ What does it mean for me as a user?

Any changes in our API’s will not be reflected in our SDKs. Hence, the code might not work unless you adjust the same.

✨ What are the next steps?

If you are interested in taking the ownership of the project on GitHub, please get in touch with us and we can discuss the process. Otherwise, if there are no objections from anyone, we would archive the project following the open source sunset process.

Please use the platform SAP Answers if you have any other questions related to this topic.

Happy bot building!

The SAP Conversational AI team

Synospis

This module is a wrapper around the SAP Conversational AI API, and allows you to:

Installation

Install the package using npm, as shown below:

composer require sapcai/sdk-php

You can now use the SDK in your code. All you need is your bot's token. In case you have enabled our versioning feature in the settings of your bot, you can refer to our versioning documentation to learn how to select the appropriate token for you versions and environments.

Using the entire SDK:

<?php
require_once __DIR__ . '/vendor/autoload.php';

use Sapcai\Client;

$client = new Client('YOUR_TOKEN');

Extracting one single API:

<?php
require_once __DIR__ . '/vendor/autoload.php';

use Sapcai\Client;

$request = Client::Request('YOUR_TOKEN');
$connect = Client::Connect('YOUR_TOKEN');

More

You can view the whole API reference at cai.tools.sap/docs/api-reference.

You can follow us on Twitter at @sapcai for updates and releases.

License

Copyright (c) [2019] SAP Conversational AI

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.