onedrive

Why doesn't Microsoft Skydrive download multiple files even though MS example shows it? (wl.download)

烈酒焚心 提交于 2019-12-11 05:58:43
问题 Summary I am attempting to find out why the wl.download function will not download more than one file even though the Microsoft examples seem to indicate that they can. And, the code seems to be called for each file you attempt to download, but only the one file is actually downloaded. Details Here are the details of how you can see this problem which I've tried in IE 11.x and Chrome 30.x If you will kindly go to : http://isdk.dev.live.com/dev/isdk/ISDK.aspx?category=scenarioGroup_skyDrive

Windows Phone 7 Mango Update - SkyDrive functionality available for developers?

亡梦爱人 提交于 2019-12-11 05:39:29
问题 I read a lot about new SkyDrive syncing features (syncing of documents, pictures...) coming with Mango. But will this functionality be available to developers or is it limited to applications by Microsoft? I think this would be great but I didn't find any information on it. 回答1: With the current release of the SDK, SkyDrive functionality is not available to third-party developers. As a matter of fact, there is no official public SkyDrive API. There is the unofficial SkyDrive .NET API Client,

403 Forbidden on reading CSV file in OneDrive

荒凉一梦 提交于 2019-12-11 05:32:39
问题 I am trying to read my CSV files using Microsoft Graph API: /me/drive/items/${someId}/workbook/worksheets('${someSheetName}')/usedRange However it returns 403 Forbidden -> AccessDenied -> Could not get WAC token. When reading a XLSX file, it works fine. I am using personal microsoft account. Thanks for your help. 回答1: CSV and .xls are not supported formats. Only .xlsx works for this feature. 回答2: As others have pointed out, CSV files are not supported in the new Excel API. However, to help

Support for multiple domains/subdomains in OneDrive File Picker for Web Apps

▼魔方 西西 提交于 2019-12-11 05:31:05
问题 We have a CMS that powers over 2000 school websites. The admin sites for each of those websites are all under the same root domain, e.g. *.myadmin.com . We are working on integrating OneDrive File Picker on multiple pages in all of those admin sites. We have an issue with the Redirect URLs in the API Settings. We tried to set the Root domain field to myadmin.com by setting Redirect URLs: to https://myadmin.com . In JavaScript, we initialize the File Picker like this: WL.init({ client_id:

Cannot delete an upload session

[亡魂溺海] 提交于 2019-12-11 05:23:59
问题 I can create an upload session, but I cannot delete it immediately afterwards. I receive a 403 Forbidden error. Transfer-Encoding: chunked X-SharePointHealthScore: 0 X-Forms_Based_Auth_Required: https://REDACTED.sharepoint.com/_forms/default.aspx?ReturnUrl=/_layouts/15/error.aspx&Source=%2f_vti_bin%2fclient.svc%2fv2.0%2fdrives%2fREDACTED%2fuploadSession%3fguid%3d%27REDACTED%27%26path%3d%27%7etmpE6_test.txt%27%26overwrite%3dFalse%26rename%3dTrue X-Forms_Based_Auth_Return_Url: https://REDACTED

Create folder on OneDrive with API

爱⌒轻易说出口 提交于 2019-12-11 03:04:02
问题 I am trying to create new folder on OneDrive through API, but I am getting Exception Fatal error: Uncaught exception 'League\OAuth2\Client\Provider\Exception\IdentityProviderException' with message 'Must provide one of the following facets to create an item: Bundle, File, Folder, RemoteItem This is with $a = ["name" => "Folder"]; . If I change it to this: $a = ["name" => "Folder", "folder" => array()]; $this->provider->post('https://graph.microsoft.com/v1.0/me/drive/root/children',$a,$

WP8 + Upload File to Skydrive

房东的猫 提交于 2019-12-11 01:28:58
问题 I'm trying to upload a simple .cer file to SkyDrive. Regardless of the LiveConnectClient-Method I use, nothing happens. There is no compile, runtime or other Exception and my app never receives a LiveOperationResult . I'm using the emulator, and I'm able to log in to MS Live (so my internet connection is fine). Here is a excerpt of the code used: using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication()) { using(var fileStream = store.OpenFile(certPath, FileMode.Open

How do I find the OneDrive (SkyDrive) and GoogleDrive folders without the API?

ε祈祈猫儿з 提交于 2019-12-10 20:14:50
问题 Thanks to this article, How do I programmatically locate my Dropbox folder using C#? I can programmtically find the Dropbox folder. Now, without installing and using various APIs, how can I do the same for GoogleDrive and MS SkyDrive? Vb.Net or C# solutions are OK... 回答1: I found part of the answer here... How do I programmatically locate my Google Drive folder using C#? Here is my code for three of the main Webfolder services Dim StoreFolder As String = "" ' Dropbox Dim dbPath As String =

Silent Authentication for OneDrive

不羁的心 提交于 2019-12-10 19:27:01
问题 I am writing a program for a client and they are running into storage issuses on their server and as such have decided to go with Cloud storage. As the web application is in VB.NET they are electing to go with OneDrive. Having had a look at their API it seems that OneDrive wants the user to sign in with their personal Microsoft Account and upload the files to their personal OneDrive. My client wishes for them to be uploading the files to their business OneDrive via a "silent authentication"

Get OneDrive Item Id for Current Word doc

我们两清 提交于 2019-12-10 18:49:25
问题 I'm looking into building an add-in for Microsoft Word that would involve creating a copy of the current document. I've found where I can copy an item through the OneDrive API. However, this requires the item-id for the document to be copied. I can't seem to find how to get the item-id for the current Word document through the Office JavaScript API. I've looked on the Office.context.document object, as well as the Office.context.document.getFileAsync() and Office.context.document