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?
Try calling:
In the evernote official ruby app that’s how they construct the note.