抓取 OneNote Web App 页面
我真的很喜欢 OneNote 的很多功能,但是,要真正充分利用它,我至少需要能够从 OneNote Web 应用程序页面中抓取数据。他们非常巧妙地使用 JavaScript 来模拟桌面 UI。我希望能够在这些页面上读取/写入数据。有想法吗?
I'm really liking many things about OneNote however, to really use it to the full, I need to be able to at least Scrape data from OneNote web app pages. They make pretty ingenious use of javascript to emulate the Desktop UI. I would love to be able to read/write data on these pages. Ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 REST API: https://dev.onenote.com/docs 它确实支持阅读和您可以获得大部分页面内容,这些内容与网络内容相同(或接近)。更不用说使用结构化模式更容易解析。
Look at the REST API: https://dev.onenote.com/docs It does support reading and you can get a large portion of page content, which is at parity (or close to it) with what is on the web content. Not to mention it is easier to parser with a structured schema.
你能用 Selenium 做点什么吗?
或者等到 RESTful API 允许读取?有什么事情是你需要做的,只能通过抓取来实现吗?
Could you do something with Selenium?
Or wait until the RESTful API allows reading? Is there something you need to do that can only be achieved by scraping?