radutopala/skype-bot-php 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

radutopala/skype-bot-php

最新稳定版本:v1.3.0

Composer 安装命令:

composer require radutopala/skype-bot-php

包简介

Skype Bot CLI & Library Client

README 文档

README

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('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
    ]);
    

统计信息

  • 总下载量: 4.95k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 65
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 65
  • Watchers: 7
  • Forks: 16
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-04-28

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固