This middleware integrates WSSE funtionality into Guzzle, a PHP framework for building RESTful web service clients.
- PHP 5.5 or above
- Guzzle PHP Framework
Using composer:
{
"require": {
"eightpoints/guzzle-wsse-middleware": "^4.1.1"
}
}
<?php
$wsse = new \EightPoints\Guzzle\WsseAuthMiddleware($username, $password);
# Optional: Set createdAt by a expression (if not, current time will be used automatically)
# http://php.net/manual/en/datetime.formats.relative.php
# Useful if there is a small difference of time between client and server
# DateTime object will be regenerated for every request
$wsse->setCreatedAtTimeExpression('-10 seconds');
$stack = \GuzzleHttp\HandlerStack::create();
// Add the wsse middleware to the handler stack.
$stack->push($wsse->attach());
$client = new \GuzzleHttp\Client(['handler' => $stack]);
$response = $client->get('http://www.8points.de');
- Florian Preusner (Twitter)
See also the list of contributors who participated in this project.
This middleware is licensed under the MIT License - see the LICENSE file for details