RubyonRailsアプリでEvernotegemを使用しています。
私はこれを行うことによって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)
ユーザーのメモに問題なくアクセスできます。私の質問は、メモオブジェクトを作成するにはどうすればよいですか?