我正在使用 google apis php sdk 并尝试从我的 google 云数据存储中访问一些数据。此时我的身份验证没有问题,但在我的查询过程中出现错误。我几乎通过 sdk 中的代码来实现它,因为文档是空的,但是没有任何迹象表明我为什么会收到这个错误。
这是我的代码:
$run_query = new Google_Service_Datastore_RunQueryRequest; 15
$query = new Google_Service_Datastore_Query;
$query->setKinds(array("views")); 16
$query_filter = new Google_Service_Datastore_Filter; 17
$query_property_filter = new Google_Service_Datastore_PropertyFilter; 18
$query_property_filter->setOperator('EQUAL'); 19
$query_property_ref = new Google_Service_Datastore_PropertyReference; 20
$query_property_ref->setName('_IS_ACTIVE'); 21
$query_property_val = new Google_Service_Datastore_Value; 22
$query_property_val->setBooleanValue(true); 23
$query_property_filter->setProperty($query_property_ref); 24 class Google_Model implements ArrayAccess
$query_property_filter->setValue($query_property_val); 25 {
$query_filter->setPropertyFilter($query_property_filter); 26
$query->setFilter($query_filter); 27
$run_query->setQuery($query); 28 null.
29
$views = $datastore->datasets->runQuery('my-project-id', $run_query);
这是我得到的错误:
Google_Service_Exception [ 500 ]: Error calling POST https://www.googleapis.com/datastore/v1beta2/datasets/my-project-id/runQuery: (400) kind is required for filter: _IS_ACTIVE
我在哪里添加这个kind
谷歌要求的?