john_zuk/php-click-meeting-api 问题修复 & 功能扩展

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

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

john_zuk/php-click-meeting-api

最新稳定版本:2.0.0

Composer 安装命令:

composer require john_zuk/php-click-meeting-api

包简介

Clickmeeting API client

README 文档

README

Requirements

  • PHP >= 7.1
  • Guzzle library,
  • (optional) PHPUnit to run tests.

Installation

Via composer

composer require john_zuk/php-click-meeting-api guzzlehttp/guzzle:^7.2 http-interop/http-factory-guzzle:^1.0

General API Usage

<?php

// This file is generated by Composer
require_once __DIR__ . '/vendor/autoload.php';

$client = new \ClickMeeting\Client();
$client->authenticate('YourAPIKeyHere');

$client->conferences()->add([
    'name' => 'test',
    'room_type' => 'webinar',
    'permanent_room' => 0,
    'access_type' => 3,
    'registration' => [
        'enabled' => true,
    ],
]);

$client->conferences()->edit(321321, [
    'name' => 'test-edit',
]);

$client->conferences()->delete(321321);

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-12-30