如何在 Ruby on Rails 中使用 Evernote gem 创建笔记?
我在 Ruby on Rails 应用程序中使用 Evernote gem。
我通过这样做创建一个 NoteStore:
# Construct the URL used to access the user's account
noteStoreUrl = "https://sandbox.evernote.com/edam/note/" + shard_id
noteStoreTransport = Thrift::HTTPClientTransport.new(noteStoreUrl)
noteStoreProtocol = Thrift::BinaryProtocol.new(noteStoreTransport)
noteStore = Evernote::EDAM::NoteStore::NoteStore::Client.new(noteStoreProtocol)
我可以很好地访问用户的笔记。我的问题是,如何创建 note 对象?
I am using the Evernote gem in my Ruby on Rails app.
I am creating a NoteStore by doing this:
# Construct the URL used to access the user's account
noteStoreUrl = "https://sandbox.evernote.com/edam/note/" + shard_id
noteStoreTransport = Thrift::HTTPClientTransport.new(noteStoreUrl)
noteStoreProtocol = Thrift::BinaryProtocol.new(noteStoreTransport)
noteStore = Evernote::EDAM::NoteStore::NoteStore::Client.new(noteStoreProtocol)
I can access the users' notes fine. My question is, how do I create a note object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试调用:
在 Evernote 官方 ruby 应用程序中,这就是他们构建笔记的方式。
Try calling:
In the evernote official ruby app that's how they construct the note.