2017 © Pedro Peláez
 

library skype-bot-php

Skype Bot CLI & Library Client

image

dr-white87/skype-bot-php

Skype Bot CLI & Library Client

  • Friday, May 25, 2018
  • by DrWhite87
  • Repository
  • 1 Watchers
  • 0 Stars
  • 4 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

PHP CLI/Library for the Skype Bot API

API Docs: https://developer.microsoft.com/en-us/skype/bots/docs

Installation

There are 2 ways to install it: - Install as a Composer Package, (*1)

Install as a Composer Package

$ composer require dr-white87/skype-bot-php --dev

Usage

programmatic:

<?php

use Skype\Client;

$client = new Client([
    'clientId' => '<yourClientId>',
    'clientSecret' => '<yourClientSecret>',
]);
$api = $client->authorize()->api('conversation');   // Skype\Api\Conversation
$api->activity('29:<skypeHash>', 'Your message');

cli:

Here some usage examples., (*2)

$ bin/skype auth <yourClientId>
$ bin/skype conversation:activity <to> <message>

Or with the phar file., (*3)

php skype.phar auth <yourClientId>
php skype.phar conversation:activity <to> <message>

Tips

  • If used as a library, the HTTP Guzzle Client will automatically try to re-authenticate using a Guzzle middleware, if the access_token will expire in the following 10 minutes.
  • If used as a phar, you can update it to latest version using skype.phar self-update
  • If used as a library, you can store the token configs in your own preffered file path, as follows:, (*4)

    $client = new Client([
        'clientId' => '<yourClientId>',
        'clientSecret' => '<yourClientSecret>',
        'fileTokenStoragePath' => '<yourOwnPath>',
    ]);
    
  • You can also write your own TokenStorageInterface::class, (*5)

    $client = new Client([
       'clientId' => '<yourClientId>',
       'clientSecret' => '<yourClientSecret>',
       'tokenStorageClass' => DatabaseTokenStorage::class
    ]);
    

More docs to come soon., (*6)

The Versions