iwd-nl/snelstart-php
最新稳定版本:v2.1.1
Composer 安装命令:
composer require iwd-nl/snelstart-php
包简介
Snelstart API toegepast in PHP
关键字:
README 文档
README
PHP client library to use the Snelstart B2B API.
Note that this library is not created, or maintained, by Snelstart.
Pre-word
This release will support both version 1 and version 2. Version 1 is considered deprecated, as Snelstart does not activly promote it anymore. Instructions on how to upgrade will be added when the next release takes place.
Installation
Installation is easy as 1, 2, 3 thanks to Composer.
composer require iwd-nl/snelstart-php
Usage
Create an account at [https://b2bapi-developer.snelstart.nl/] and subscribe to 'Verkenning'. Obtain the Primary and Secondary key from your Profile and generate a key on the web interface of Snelstart under 'Maatwerk'. You are going to need these credentials for the next chapter.
Authentication
Now that you have obtained the credentials you can start by connection the library to the API.
$primaryKey = "<primary>"; $secondaryKey = "<secondary>"; $clientKey = "<maatwerksleutel>"; $bearerToken = new \SnelstartPHP\Secure\BearerToken\ClientKeyBearerToken($clientKey); $accessTokenConnection = new \SnelstartPHP\Secure\AccessTokenConnection($bearerToken); $accessToken = $accessTokenConnection->getToken(); $connection = new \SnelstartPHP\Secure\V2Connector( new \SnelstartPHP\Secure\ApiSubscriptionKey($primaryKey, $secondaryKey), $accessToken );
_Please note that there is also a class named SnelstartPHP\Secure\CachedAccessTokenConnection for when you are done with developing. This will automatically take care of renewing expired access tokens. _
Check if you are really authenticated
We implemented the EchoConnector to test to see if you are authenticated.
Fetch data
For an example see var/doc/v2/inkoopboeking_find_all.php
Add data
For an example see var/doc/v2/inkoopboeking_add.php
Supported resources
Not all resources are currently implemented. Feel free to create a pull request.
Links
统计信息
- 总下载量: 17.31k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2018-08-27