I have a query, trying to get the queries for specific urls on my site. I can get them just fine with python, but for the same query parameters, I only get my queries for the main page in js. Why?
{
siteUrl: 'https://myurl.com/', //This is not here for the python query
startDate: '2022-08-10',
endDate: '2022-11-09',
dimensions: [
"query"
],
dimensionFilterGroups: [
{
groupType: 'and',
filters: [
{
dimension: 'page',
operator: 'equals',
expression: 'https://myurl.com/sub/'
}
]
}
],
rowLimit: 10,
}
Edit to context: I am trying to analyze my search console results. I'd like to see my queries corresponding to a specific page on my site. I call searchConsole.searchanalytics.query() with the parameters above in both cases.
Comments
Post a Comment