承接 pipl/piplapis-php 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

pipl/piplapis-php

最新稳定版本:v5.2.0

Composer 安装命令:

composer require pipl/piplapis-php

包简介

Client library for use with the Pipl search API

README 文档

README

This is a PHP client library for easily integrating Pipl's APIs into your application.

Library Requirements

  • PHP 8.x.x and above is supported!
  • Make sure php-curl is enabled (Windows: in the php.ini file uncomment ;extension=php_curl.dll, Linux (Debian derivatives): apt-get install php5-curl).
  • Not required, but for input validation of unicode strings mb_string is recommended.

Installation

php composer.phar require pipl/piplapis-php

Hello World

<?php

require_once './piplapis/search.php';

$configuration = new PiplApi_SearchRequestConfiguration();
$configuration->use_https = true;
$configuration->api_key = 'YOURKEY';

$request = new PiplApi_SearchAPIRequest(array('email' => 'clark.kent@example.com',
'first_name' => 'Clark',
'last_name' => 'Kent'), $configuration);

?>

Getting Started & Code Snippets

Pipl's Search API

统计信息

  • 总下载量: 319.72k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 18
  • 点击次数: 1
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 17
  • Watchers: 15
  • Forks: 11
  • 开发语言: PHP

其他信息

  • 授权协议: APACHE2
  • 更新时间: 2015-03-16