定制 qurban-ali/talent-scope-api 二次开发

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

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

qurban-ali/talent-scope-api

最新稳定版本:v1.1.0

Composer 安装命令:

composer require qurban-ali/talent-scope-api

包简介

PHP API Wrapper for the Talent Scope API

README 文档

README

This package provides a client for interacting with the TalentScope API, including authentication, resume batch processing, candidate management, and webhook handling.

Installation

You can install the package via Composer:

composer require qurban-ali/talent-scope-api

Usage

Initialization

To get started, you need to initialize the TalentScopeClient with the base URL, access token, and refresh token.

use QurbanAli\TalentScopeApi\TalentScopeClient;

$baseUrl = 'https://api.talentscope.com';
$accessToken = 'your-access-token';
$refreshToken = 'your-refresh-token';

$client = new TalentScopeClient($baseUrl, $accessToken, $refreshToken);

Authentication

Login

To log in using email and password:

$email = 'user@example.com';
$password = 'your-password';

$response = $client->auth->login($email, $password);
print_r($response);

Refresh Token

To refresh the authentication token:

$response = $client->auth->refreshToken();
print_r($response);

Resume Batch Processing

You can handle resume batch processing using the ResumeBatch class.

Candidate Management

You can manage candidates using the Candidate class.

Webhook Handling

You can handle webhooks using the Webhook class.

Contributing

Please submit issues and pull requests for any changes or additions.

License

This package is open-sourced software licensed under the MIT license.

统计信息

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

GitHub 信息

  • Stars: 2
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-02-25