致命错误:“地点上不允许使用端点”

时间:2018-11-08 20:37:23

标签: php algolia

当尝试使用addObjects()函数将一些数据推送到新帐户时,我收到此错误消息。

这是我的代码:

<?php

require 'vendor/autoload.php';

// Create the Algolia Search Client and add the objects to the summitpost_pages index
$client = new \AlgoliaSearch\Client('myAppID', 'myAdminAPIKey');
$index = $client->initIndex('summipost_pages');
$actors = [
    ['name'=>'Tom Cruise', 'rating'=>1200],
    ['name'=>'Lucy Liu', 'rating'=>1299]
];

$index->addObjects($actors);

结果是: PHP致命错误:未捕获到的AlgoliaSearch \ AlgoliaException:不允许在vendor / algolia / algoliasearch-client-php / src / AlgoliaSearch / Client.php:1371

中的位置上使用终结点

有趣的是,我在“基础结构”选项卡上的帐户中看到了相同的消息。请参阅所附图片。

I see the same message in my account here

我在做什么错了?

0 个答案:

没有答案