0
有人知道如何將文件下載到手機嗎? 我提出的要求,並已收到項目:使用c#和OneDrive API將文件下載到Windows Phone
HttpClient httpClient = new HttpClient();
var response = await httpClient.GetAsync(String.Format("https://api.onedrive.com/v1.0/drive/special/approot/children?access_token={0}", token));
var text = await response.Content.ReadAsStringAsync();
我有他們的ID,而現在我必須這樣做NEX要求:
https://api.onedrive.com/v1.0/drive/items/{ID}/content
但如何讓下載文件在本地存儲應用程序? (文件格式爲.txt)
看看這個[鏈接](http://www.codeproject.com/Tips/761490/How-to-use-Onedrive-Features-in-a-Windows-Phone)。 – AbsoluteSith