Hi,
I want to get USER_INTEREST information using AdGroupCriticianService, but if you run the query statement below, no value will be returned.
Please let me know if there is a problem with my query statement.
$adGroupCriterionService = $adWordsServices->get($session, AdGroupCriterionService::class);
$page = $adGroupCriterionService->query(
sprintf(
'SELECT UserInterestId WHERE AdGroupId="%d" '
. 'AND CriteriaType="USER_INTEREST" AND CriterionUse="BIDDABLE"',
$adgroupId
)
);