dbp/campusonline-api
最新稳定版本:v0.3.28
Composer 安装命令:
composer require dbp/campusonline-api
包简介
无描述信息
README 文档
README
The goal of this package is to provide a PHP API for the various web services provided by CAMPUSonline.
composer require dbp/campusonline-api
Legacy Rest API
<?php use Dbp\CampusonlineApi\Rest\Api; $api = new Api('https://qline.example.at/online/', 'client_id', 'client_secret'); $ucard = $api->UCard(); $ucard->getCardsForIdentIdObfuscated('1234567890');
Generic Exports API
<?php use Dbp\CampusonlineApi\Rest\Api; $api = new Api('https://qline.example.at/online/', 'client_id', 'client_secret'); $generic = $api->GenericApi('loc_apiMyExport'); $generic->getResource('ID', '42);
Legacy XML Web Services API
<?php use Dbp\CampusonlineApi\LegacyWebService\Api; $api = new Api('https://qline.example.at/online/', 'api_token'); $org = $api->OrganizationUnit(); $org->getOrganizationUnitById('1234');
Public Rest API
TODO
统计信息
- 总下载量: 33.36k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 5
- 推荐数: 0
其他信息
- 授权协议: AGPL-3.0-or-later
- 更新时间: 未知