Giter Site home page Giter Site logo

skype-bot-php's Introduction

PHP CLI/Library for the Skype Bot API

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('29:<skypeHash>', '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>

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:

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

    $client = new Client([
        'clientId' => '<yourClientId>',
        'clientSecret' => '<yourClientSecret>',
        'tokenStorageClass' => DatabaseTokenStorage::class
    ]);
    
  • And you can also pass your custom tokenStorageService, a service that must implement TokenStorageInterface; usable in Symfony scenarios

    $client = new Client([
        'clientId' => '<yourClientId>',
        'clientSecret' => '<yourClientSecret>',
        'tokenStorageService' => $service
    ]);
    

skype-bot-php's People

Contributors

radutopala avatar gduymaz avatar magusd avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.