I'm trying to change the access permissions of a folder on skydrive, but it isn't working.
Dictionary<string, object> folderData = new Dictionary<string, object>();
folderData.Add("shared_with", "Everyone (public)");
LiveConnectClient client = new LiveConnectClient(session);
client.PutAsync(folderId, folderData);
What am I doing wrong?