callab/api
Composer 安装命令:
composer require callab/api
包简介
API to the services of Callab.me
README 文档
README
This is the PHP-API for https://callab.me. You can get your API credentials from the settings menu.
Usage
<?php
require __DIR__ . '/src/CallabClient.php';
$api_key = "68481fb0-a98e-11ea-b627-8b2a92262801";
$secret_key = "8f0a9c7228e7893ef0f7d9706dce499c34501714";
$base_url = "https://app.callab.me";
// 1. Create instance of Client with credentials
$client = new CallabClient($base_url, $api_key, $secret_key);
// 2. Schedule meeting
$response = $client->scheduleMeeting(
'30.04.2021 13:30:00',
'30.04.2021 13:55:00',
'My meeting with somebody',
'Europe/Berlin'
);
var_dump($response);
统计信息
- 总下载量: 604
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-01-23