meta-tech/pws-client
Composer 安装命令:
composer require meta-tech/pws-client
包简介
PwsClient is a php web service client managing PwsAuth protocol
关键字:
README 文档
README
a php webservice client managing PwsAuth protocol
Requirements
PHP >= 5.4
Install
The package can be installed using Composer .
composer require meta-tech/pws-client
Or add the package to your composer.json.
"require": {
"meta-tech/pws-client" : "^1.3"
}
Usage
When instantiating, PwsClient automatically checks if it has been authenticated. Otherwise, or if the session has expired, the client will perform the authentication. Then, you can initiate get or post call
<?php require_once(__dir__ . '/vendor/autoload.php'); use Symfony\Component\Yaml\Yaml; use MetaTech\PwsAuth\Authenticator; use MetaTech\Ws\Client; $config = Yaml::parse(file_get_contents(__dir__ . '/config/pwsauth.yml')); $authenticator = new Authenticator($config); $config = Yaml::parse(file_get_contents(__dir__ . '/config/pwsclient.yml')); $client = new Client($config, $authenticator); // on instanciation the client init this calls : // $client->check(); // enventually $client->call() (depending on previous response); // get example $response = $client->get('/ws/person/222'); if ($response->done) { // do stuff } // post example $response = $client->post('/ws/person/222/update', [ 'firstname' => 'toto']); if ($response->done) { // do stuff } // to close and destroy session on serverside : // $client->logout();
Config
# pwsclient config # 0 : disable, 1 : verboose, 2 : most verboose debug : 1 protocol : https:// hostname : pwsserver.docker # ssl options verifypeer : 0 verifyhost : 0 # file storing the server 's session id - must be out of DocumentRoot and read/writable by server store : wsess login : test password : test key : test # 0 : display cli, 1 : display html html_output : 0 # http authentication http : user : password : # server uris for authentication uri : auth : /ws/auth logout : /ws/logout check : /ws/isauth
Server Response
PwsClient intend to receiv any JsonResponse, the structure of the response is free.
However, meta-tech always return this simple Json Structure :
{ done : boolean, msg : 'string contextual msg', data : whatever }
see meta-tech/pws-server
and meta-tech/silex-core
License
The project is released under the MIT license, see the LICENSE file.
meta-tech/pws-client 适用场景与选型建议
meta-tech/pws-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.39k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2017 年 03 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「http」 「client」 「webservice」 「PwsAuth」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 meta-tech/pws-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 meta-tech/pws-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 meta-tech/pws-client 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Wrapper around PHP SoapClient class
repository php library
Externalize Symfony VarDumper dumps
PHP implementation of GestPay (Banca Sella) Web Services
Mock PSR-18 HTTP client
Asynchronous MQTT client built on React
统计信息
- 总下载量: 3.39k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-03-15