ivol/workday-soap-client
最新稳定版本:v1.1.0
Composer 安装命令:
composer require ivol/workday-soap-client
包简介
Soap client, that will be able to authenticate using X509 authentication (https://docs.oasis-open.org/wss/v1.1/wss-v1.1-spec-errata-os-x509TokenProfile.htm) or username/password authentication mechanism to Workday Web Services.
README 文档
README
This library allows authenticating requests passed to WWS. It allows 2 types of authentication:
- X509 Authentication
- UserNameToken authentication
- OAUTH2 (refresh token flow) authentication
Usage
<?php
use ivol\Workday\Soap\SoapClient;
$wsdl = 'add your link to WWS wsdl here';
$options = [
'token' => new UsernamePasswordToken("root","root", "root_tenant") // for list of available tokens - check ivol\Workday\Soap\Token
];
$client = new SoapClient($wsdl, $options);
$client->Get_Postings([]);
License
Workday-soap-client is released under the MIT License.
统计信息
- 总下载量: 8.45k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-04-21