Skip to content

radutopala/skype-bot-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#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:

  • Download the Phar
  • Install as a Composer Package

###Download the Phar

download the latest version from the Releases section or from the cli:

$ wget https://github.com/radutopala/skype-bot-php/releases/download/1.0.0/skype.phar && chmod +x skype.phar 

###Install as a Composer Package

$ composer require radutopala/skype-bot-php 

##Usage

programmatic:

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

cli:

Here some usage examples.

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

Or with the phar file.

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

More docs to come soon.

About

PHP CLI/Library for the Skype Bot API

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •