当尝试使用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
我在做什么错了?