定制 platforg/adobe-connect 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

platforg/adobe-connect

最新稳定版本:v0.2.4

Composer 安装命令:

composer require platforg/adobe-connect

包简介

Provides a PHP Client to interact with the Adobe Connect's API

README 文档

README

At the moment, the client not implement methods for all the Adobe Connect's API actions (You're invited to do it :)), instead, we just implement those that we usually use in our system.

Installation using Composer

$ composer require platforg/adobe-connect

Usage

<?php
require __DIR__ . '/vendor/autoload.php';

$config = new AdobeConnect\Config(
    "your-account.adobeconnect.com",
    "username@gmail.com",
    "password"
);

$client = new AdobeConnect\ApiClient($config);

// Call endpoints
$info = $client->commonInfo();
var_dump($info);

// ...
$scos = $client->scoSearch('term...');
var_dump($scos);
// ...

The methods names in the ApiClient class maintain a one-to-one relationship with the AdobeConnect's endpoints (in camelCase instead of hyphen).
Please, see the AdobeConnect\ApiClient for a complete list of endpoints implemented. Also, you can use/see AdobeConnect\ExtraApiClient for some custom methods.

Frameworks integrations (third-party):

Todo:

  • Add unit test.
  • Implement more methods.
  • Add Documentation.

Note: We don't have any relation with Adobe.

统计信息

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

GitHub 信息

  • Stars: 15
  • Watchers: 5
  • Forks: 9
  • 开发语言: PHP

其他信息

  • 授权协议: Apache2
  • 更新时间: 2014-09-25