50 lines
1.3 KiB
PHP
50 lines
1.3 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Captcha
|
||
|
|
*
|
||
|
|
* @category Jdcloud
|
||
|
|
* @package Jdcloud\Captcha
|
||
|
|
* @author Jdcloud <jdcloud-api@jd.com>
|
||
|
|
* @license Apache-2.0 http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
* @link https://www.jdcloud.com/help/faq
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace Jdcloud\Captcha;
|
||
|
|
|
||
|
|
use Jdcloud\JdCloudClient;
|
||
|
|
use Jdcloud\Api\Service;
|
||
|
|
use Jdcloud\Api\DocModel;
|
||
|
|
use Jdcloud\Api\ApiProvider;
|
||
|
|
use Jdcloud\PresignUrlMiddleware;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Client used to interact with captcha.
|
||
|
|
*
|
||
|
|
* @method \Jdcloud\Result getSessionId(array $args = [])
|
||
|
|
* @method \GuzzleHttp\Promise\Promise getSessionIdAsync(array $args = [])
|
||
|
|
* @method \Jdcloud\Result verifyToken(array $args = [])
|
||
|
|
* @method \GuzzleHttp\Promise\Promise verifyTokenAsync(array $args = [])
|
||
|
|
*/
|
||
|
|
class CaptchaClient extends JdCloudClient
|
||
|
|
{
|
||
|
|
public function __construct(array $args)
|
||
|
|
{
|
||
|
|
$args['with_resolved'] = function (array $args) {
|
||
|
|
$this->getHandlerList()->appendInit(
|
||
|
|
PresignUrlMiddleware::wrap(
|
||
|
|
$this,
|
||
|
|
$args['endpoint_provider'],
|
||
|
|
[
|
||
|
|
'operations' => [
|
||
|
|
],
|
||
|
|
'service' => 'captcha',
|
||
|
|
'presign_param' => 'PresignedUrl',
|
||
|
|
]
|
||
|
|
),
|
||
|
|
'captcha'
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
parent::__construct($args);
|
||
|
|
}
|
||
|
|
}
|