I can upload to the top level directory in OneDrive with a PUT request at the URI:
I can upload a specific folder if I know it's specific ID:
"https://apis.live.net/v5.0/folder.5f5fb682f4910ce0.5F5FB682F4910CE0!189/files/someFile.txt?access_token=xyz123"
But how do I upload to a folder using it's friendly name, e.g. my_photos. The OneDrive documentation isn't helpful - it seems to gloss over this. It mentions friendly names, but I don't know how to use them as part of a URI PUT request.
edit: https://msdn.microsoft.com/en-us/jj680723 shows using GETs with friendly names, but what about PUTs? I can't figure it out.
Thanks