empla/meetgeek-sdk
Composer 安装命令:
composer require empla/meetgeek-sdk
包简介
MeetGeek.ai SDK
README 文档
README
A PHP integration of the MeetGeek.ai Public API.
Sponsors
This library is made possible by Empla B.V.. Empla is an API integrator software company.

Installation
Before you can use this library, register at MeetGeek.ai.
In your MeetGeek account, go to Integrations and find the Public API integration. Copy your API key and save it for later.
Composer (recommended)
Add the library with Composer
composer require empla/meetgeek-sdk
Setup
The API Client uses an PSR-17 compatible HTTP Client and HTTP Factories.
<?php
// Create a PSR-17 HTTP Client. For example Guzzle.
$client = new \GuzzleHttp\Client([]);
// Create a RequestFactoryInterface, StreemFactoryInterface and UriFactoryInterface.
// For example the all in onw Guzzle PSR-7 HttpFactory
$httpFactory = new GuzzleHttp\Psr7\HttpFactory();
$apiClient = new ApiClient(
'your-meetgeek-api-key', // Your MeetGeek Public API Key
$client,
$httpFactory,
$httpFactory,
$httpFactory,
);
$meetgeek = new \Empla\MeetGeekSDK\MeetGeek($apiClient);
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-12-27