OpenSearch.php 721 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace app\api\controller;
  3. require_once("../vendor/alibabacloud/opensearch-sdk-php/OpenSearch/Autoloader/Autoloader.php");
  4. use OpenSearch\Client\OpenSearchClient;
  5. /**
  6. * @title OpenSearch
  7. * @controller OpenSearch
  8. * @group base
  9. */
  10. class OpenSearch
  11. {
  12. public $accessKeyId = 'LTAI5tJ5p12drZegeWVG33xZ';
  13. public $secret = '82UWAiY5e5wH8tSkRvMtqVoGO0h8SB';
  14. public $endPoint = 'http://opensearch-cn-shanghai.aliyuncs.com';
  15. public $appName = 'GYXTEST ';
  16. public $suggestName = 'GYXTEST';
  17. public $options = ['debug' => true];
  18. public function add()
  19. {
  20. $client = new OpenSearchClient($this->accessKeyId, $this->secret, $this->endPoint, $this->options);
  21. }
  22. }