PHP code example of rapidapi / rapidapi-connect

1. Go to this page and download the library: Download rapidapi/rapidapi-connect library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

rapidapi / rapidapi-connect example snippets


    $image = new CURLFile('/YOUR_PATH_HERE/maxresdefault.jpg');
    
    $response = $rapid->call('MicrosoftComputerVision', 'analyzeImage', 
    ['subscriptionKey' => '############################', 'image' => $image]
    );



use Ratchet\Client\WebSocket;
use React\EventLoop\Factory;


$loop = Factory::create();

$rapid = new RapidApi\RapidApiConnect("PROJECT_NAME", "API_KEY");

$webhook = $rapid->connectionFactory($loop);

$webhook($rapid->getWebHookToken("Slack", "slashCommand"))
    ->then(function (WebSocket $websocket) use ($loop, $rapid) {

        return $rapid->createListener($websocket, $loop, ["token" => "your_token_here", "command" => "/slash_command"]);
    }, function (\Exception $e) use ($loop, $rapid) {

        echo $rapid->createCallback("close", $e->getMessage()) . PHP_EOL;
    })
    ->then(null, null, function ($notify) {

        echo $notify;
    });

$loop->run();