You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error in ParseDataFeedJSON(GA.Data) : code : 400 Reason : Invalid value '
My segment i have followed an example as below: i am looking to retrieve (i found an example pulls the top 10 pages for the last thirty days, for visits that occurred on a mobile device
Hi, I am getting this issue when I use the following segment and it gives me this error
query.list <- Init(start.date = "2017-11-01",
end.date = "2017-11-30",
dimensions = "ga:pagePath",
metrics = "ga:pageviews",
sort = NULL, filters = NULL,
segments = my_segment,
max.results = 1000,
table.id = "ga:104288048",
start.index=NULL)
Create the Query Builder object so that the query parameters are validated
ga.query <- QueryBuilder(query.list)
Extract the data and store it in a data-frame
ga_data <- GetReportData(ga.query, token, split_daywise = T)
Error in ParseDataFeedJSON(GA.Data) : code : 400 Reason : Invalid value '
My segment i have followed an example as below: i am looking to retrieve (i found an example pulls the top 10 pages for the last thirty days, for visits that occurred on a mobile device
my_segment_element <- segment_element("deviceCategory",
operator = "EXACT",
type = "DIMENSION",
expressions = "Mobile")
my_segment_vector <- segment_vector_simple(list(list(my_segment_element)))
my_segment_definition <- segment_define(list(my_segment_vector))
my_segment <- segment_ga4("Mobile Sessions Only",session_segment = my_segment_definition)
The text was updated successfully, but these errors were encountered: