xident-io/php-sdk
Composer 安装命令:
composer require xident-io/php-sdk
包简介
PHP SDK for Xident age and identity verification
README 文档
README
Server-side PHP SDK for Xident age and identity verification. Zero external dependencies. Works with Laravel, Symfony, WordPress, and any PHP 8.1+ application.
Requirements
- PHP 8.1+
- cURL extension (bundled with PHP)
- JSON extension (bundled with PHP)
Installation
composer require xident-io/php-sdk
Without Composer: require_once '/path/to/xident-php/autoload.php';
Quick Start
use Xident\SDK\Client; $xident = new Client(apiKey: $_ENV['XIDENT_SECRET_KEY']); // 1. Create init token (your backend) $session = $xident->verification()->init([ 'callback_url' => 'https://yoursite.com/verify-callback', 'min_age' => 18, ]); // Redirect user to $session->verifyUrl // 2. After user returns, verify server-side (NEVER trust URL params) $result = $xident->verification()->getResult($token); if ($result->isVerified()) { echo $result->ageBracket(); // 18 }
How It Works
- Your backend calls
POST /verify/v1/initwith your secret key - SDK returns a token + verify URL. You redirect the user there.
- User completes verification on
verify.xident.io(liveness + age check) - User redirected back to your
success_urlwith?token=xxx - Your backend calls
GET /verify/v1/result/{token}to get the result - You make the authorization decision based on the verified result
API Reference
Client
$xident = new \Xident\SDK\Client( apiKey: 'sk_live_xxx', // Required baseUrl: 'https://api.xident.io', // Optional (default) timeout: 30, // Optional seconds maxRetries: 3, // Optional (retries on 5xx) );
verification()->init(params): InitResult
| Parameter | Type | Required | Description |
|---|---|---|---|
callback_url |
string | Yes | HTTPS URL for callback (localhost OK for dev) |
min_age |
int | No | 12, 15, 18, 21, or 25. Default: 18 |
success_url |
string | No | Redirect on success |
failed_url |
string | No | Redirect on failure |
user_id |
string | No | Your internal user ID |
theme |
string | No | light, dark, auto |
locale |
string | No | en, de, es, fr, it, pt, nl, pl, tr, ar, ja |
metadata |
string | No | Custom JSON (max 1KB) |
Returns: $result->token, $result->verifyUrl
verification()->getResult(token): SessionResult
Helpers: isVerified(), isFailed(), isPending(), isTerminal(), ageBracket(), method()
webhooks()->constructEvent(payload, signature, secret): array
Verify HMAC-SHA256 webhook signature and parse event.
$event = $xident->webhooks()->constructEvent( payload: file_get_contents('php://input'), signature: $_SERVER['HTTP_X_XIDENT_SIGNATURE'], secret: 'whsec_xxx', ); // $event['type'], $event['data']
Error Handling
use Xident\SDK\Exceptions\XidentException; use Xident\SDK\Exceptions\AuthenticationException; use Xident\SDK\Exceptions\NotFoundException; try { $result = $xident->verification()->getResult($token); } catch (AuthenticationException $e) { // 401 - Invalid API key } catch (NotFoundException $e) { // 404 - Session not found } catch (XidentException $e) { echo $e->getErrorCode(); // API error code echo $e->getRequestId(); // For support tickets echo $e->getHttpStatus(); // HTTP status }
Exception hierarchy: AuthenticationException (401), ValidationException (400), NotFoundException (404), RateLimitException (429), ServerException (5xx), NetworkException (cURL errors).
Retry Behavior
Automatic retry with exponential backoff (1s, 2s, 4s) on 5xx and network errors only. Never retries 4xx.
Laravel Example
class VerificationController extends Controller { public function start(Request $request) { $xident = new \Xident\SDK\Client(apiKey: config('services.xident.secret_key')); $session = $xident->verification()->init([ 'callback_url' => route('verify.callback'), 'min_age' => 18, 'user_id' => (string) $request->user()->id, ]); return redirect($session->verifyUrl); } public function callback(Request $request) { $xident = new \Xident\SDK\Client(apiKey: config('services.xident.secret_key')); $result = $xident->verification()->getResult($request->input('token')); if ($result->isVerified()) { $request->user()->update(['age_verified' => true]); return redirect()->route('dashboard'); } return redirect()->route('verify.failed'); } }
See examples/ for Symfony, WordPress, and webhook examples.
Security
- Secret key: Never expose
sk_*in frontend code - TLS 1.2+: Enforced on all API calls
- Webhooks: Always verify signatures (
hash_equalsfor timing-attack resistance) - Verification tokens: Always re-verify server-side. Never trust URL params alone.
- SSRF: HTTP client does not follow redirects
Testing
composer test # 96 tests, 200 assertions composer test:coverage # With HTML coverage report
Mock the client in your tests:
$transport = new \Xident\SDK\Tests\Helpers\MockTransport(); $transport->queueSuccess(['token' => 'xit_test', 'verify_url' => 'https://verify.xident.io?t=xit_test']); $client = new \Xident\SDK\Client('sk_test_xxx', transport: $transport);
Links
- Try it live
- Documentation
- API Reference
- JavaScript SDK (client-side counterpart)
- Dashboard (get your API key)
License
MIT
xident-io/php-sdk 适用场景与选型建议
xident-io/php-sdk 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 04 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「sdk」 「identity」 「age-verification」 「xident」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 xident-io/php-sdk 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 xident-io/php-sdk 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 xident-io/php-sdk 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Identity authorizator class for Nette Framework
Identity ACL extension for Nette Framework
Alfabank REST API integration
AXIUM Identity Symfony Bundle - Client d'authentification centralisée OAuth2/Keycloak
Laravel 中国身份证验证
A simply better OAuth2 Client
统计信息
- 总下载量: 1
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 27
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-04-09