You are here

public function SolrConnectorPluginBase::serverRestPost in Search API Solr 8.2

Same name and namespace in other branches
  1. 8.3 src/SolrConnector/SolrConnectorPluginBase.php \Drupal\search_api_solr\SolrConnector\SolrConnectorPluginBase::serverRestPost()
  2. 8 src/SolrConnector/SolrConnectorPluginBase.php \Drupal\search_api_solr\SolrConnector\SolrConnectorPluginBase::serverRestPost()
  3. 4.x src/SolrConnector/SolrConnectorPluginBase.php \Drupal\search_api_solr\SolrConnector\SolrConnectorPluginBase::serverRestPost()

Sends a REST POST request to the Solr server and returns the result.

Parameters

string $path: The path to append to the base URI.

string $command_json: The command to send encoded as JSON.

Return value

string The decoded response.

Overrides SolrConnectorInterface::serverRestPost

File

src/SolrConnector/SolrConnectorPluginBase.php, line 617

Class

SolrConnectorPluginBase
Defines a base class for Solr connector plugins.

Namespace

Drupal\search_api_solr\SolrConnector

Code

public function serverRestPost($path, $command_json = '') {
  return $this
    ->restRequest('server', $path, Request::METHOD_POST, $command_json);
}