Reputation: 3580
I am trying to get the 'cursor' value returned in a MQL query by following this example. Though my attempt produces the following error:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "invalid",
"message": "cursor is invalid.",
"locationType": "other",
"location": "parameters.cursor"
}
],
"code": 400,
"message": "cursor is invalid."
}
}
Upvotes: 1
Views: 464
Reputation: 10540
In the new API, the starting value for the cursor
parameter is null, not the value true
like before. Try this
Upvotes: 1