我想data-tag="to-do"
在 OneNote API 中搜索多个页面。我正在通过 curl 在标头中使用以下代码和 Access 令牌——
$url = "https://www.onenote.com/api/v1.0/me/notes";
$url .= "/pages?filter=data-tag%20eq%20'to-do'";
但它给了我这个错误——
{
"error":{
"code":"20128","message":"OData Syntax error at position 5 in 'data-tag eq 'to-do''.","@api.url":"http://aka.ms/onenote-errors#C20128"
}
}
谁能帮我解决这个问题??