Ruby / Evernote - 纠正md5哈希以通过哈希获取资源?

时间:2016-01-14 18:38:07

标签: ruby-on-rails ruby evernote

在Evernote api上调用NoteStore.getResourceByHash时,是否有人设法使用Ruby从en-media元素的哈希值生成正确的md5校验和?

我设法在c#中使用它,但我似乎无法使用Ruby。

关于这一行:

hash_func = Digest::MD5.new
@note_store.getResourceByHash(auth_token, note_guid, hash_func.hexdigest(hash), true, false, false)

谢谢: - )

1 个答案:

答案 0 :(得分:2)

这张贴子帮我解决了:Creating a byte array in ruby (c# example code)

'string'.scan(/../).map(&:hex).pack('C*')