Hello,
I am using a straightforward dropbox api call in Ruby to get a file's modifier email & display name, like so:
client = DropboxClient.new(generated_access_token)
root_metadata = client.metadata(dropbox_filepath)
user_email = root_metadata["modifier"]["email"]
user_name = root_metadata["modifier"]["display_name"]
However if the dropbox filepath includes a single quote, I haven't figured out how to escape it (I've tried %27, and various combos of backslashes and quote schemes). Oddly, if I just remove the single-quote from the filepath entirely, the api works, but that would mean that the api can't tell the difference between files: Howre_you.doc and How're_you.doc.
Much obliged for any suggestions!