onedrive

What does SPO required mean for Azure Graph API / OneDrive API access to read files (list and download)

扶醉桌前 提交于 2020-03-26 04:03:45
问题 I had assumed that OneDrive offers a free personal storage tier, so that API accesss to OneDrive should not require that the user has an Office 365 subscription... However, after hours of debugging, and just going straight to Postman, after trying to call: https://graph.microsoft.com/v1.0/me/drive/root/search(q='.obj')?select=name,id,@content.downloadUrl using the token, the error returned seems to be that the user does not have SPO, which seems to mean Office365 subscription is required? {

OneDrive官方WP版

不羁岁月 提交于 2020-03-13 09:22:15
名称:OneDrive官方WP版 版本:1.0 软件大小:2.39 MB 软件语言:简体中文 软件授权:免费版 应用平台:Windows Phone 8.1/Windows Phone 8/Windows 10 随时随地使用 Microsoft OneDrive 完成更多工作。从 Windows 10 phone、计算机(PC 或 Mac)或所使用的任何设备找到并分享你的文档、照片和其他文件。随时随地使用 Office 移动应用保持工作高效并与其他人进行协作。适用于 Windows 10 的 OneDrive 应用使你可以在出行和忙碌时轻松处理个人和工作文件。 • 使用免费的联机存储保存和分享文件。 • 在 Word、Excel、PowerPoint 和 OneNote 等 Office 应用中快速打开和保存 OneDrive 文件。 • 使用自动标记可轻松查找照片。 • 共享最喜爱的照片和视频的专辑。 请注意: 如果你要登录 OneDrive for Business,你的组织需拥有符合资格的 SharePoint Online 或 Office 365 企业订阅计划。你无法使用来自本地目录的帐户登录。 OneDrive官方WP版 http://www.xiazai.com/wins70028#js_active_url 来源: oschina 链接: https://my

Is there a way to access data from one drive using google colab?

柔情痞子 提交于 2020-02-28 06:58:22
问题 I have started using google colab to train neural networks, however the data I have is quite large (4GB and 18GB). I have all this data currently stored in one drive and I don't have enough space on my google drive to transfer these files over. Is there a way for me to directly access the data from one drive in google colab? I have tried directly loading the data from my own machine, however I feel this process is too time consuming and my machine really doesn't have enough space to store

How to search an item in specific folder in one drive?

放肆的年华 提交于 2020-02-23 07:06:10
问题 I am using Microsoft Graph to manipulate files in OneDrive. I need to search for a file in a specific folder, and if the file exists, delete that file. I am using the following code to search file, it gives the search results for the whole drive. var checkIfExists = this.graphClient .Me .Drive .Search(item["FileName"].ToString()) .Request() .GetAsync() .Result; I need to search file in specific folder only for example in duplicate folder only. 回答1: You can scope the search to any path you

Microsoft Graph API Download File content return Unauthorized 401

余生颓废 提交于 2020-02-20 05:28:32
问题 I'm trying to download a file from SharePoint Online using an "app only" token. I can obtain file info using this url https://graph.microsoft.com:443/v1.0/sites/{siteId}/drives/{driveId}/list/items/{itemId}/driveItem But when I try to download the file with this url https://graph.microsoft.com:443/v1.0/sites/{siteId}/drives/{driveId}/list/items/{itemId}/driveItem/content I get the following error 403 FORBIDDEN Content-Length →13 Content-Type →text/plain; charset=utf-8 Date →Fri, 13 Apr 2018

Microsoft Graph API Download File content return Unauthorized 401

与世无争的帅哥 提交于 2020-02-20 05:27:40
问题 I'm trying to download a file from SharePoint Online using an "app only" token. I can obtain file info using this url https://graph.microsoft.com:443/v1.0/sites/{siteId}/drives/{driveId}/list/items/{itemId}/driveItem But when I try to download the file with this url https://graph.microsoft.com:443/v1.0/sites/{siteId}/drives/{driveId}/list/items/{itemId}/driveItem/content I get the following error 403 FORBIDDEN Content-Length →13 Content-Type →text/plain; charset=utf-8 Date →Fri, 13 Apr 2018

Why does OneDrive js picker sometimes have null opener

回眸只為那壹抹淺笑 提交于 2020-02-05 03:57:05
问题 I am trying to integrate the OneDrive picker with our web application and after reading Nick's answer to this question on 10/02/2015 have chosen the route of using an iframe and utilizing postMessage. So after inserting the iframe with a button to open the OneDrive Picker and selecting a file, the popup window persists with just a spinner icon and there is an error in the console r is null . I know that, given this question having a form can cause this issue and I removed the form in the page

Onedrive cors download in javascript

ε祈祈猫儿з 提交于 2020-02-02 00:32:48
问题 I'm trying to process onedrive files in client-side javascript, but first I need a way to use XMLHttpRequest to download the file. Onedrive supports cors for a lot of operations, but for downloading the file into javascript there is the following problem: As mentioned here: onedrive rest api manual I can send a request to: GET https://apis.live.net/v5.0/FILE_ID/content?access_token=ACCESS_TOKEN and it will reply with a location header redirecting the browser to the file. The problem is when I

Onedrive cors download in javascript

為{幸葍}努か 提交于 2020-02-02 00:28:47
问题 I'm trying to process onedrive files in client-side javascript, but first I need a way to use XMLHttpRequest to download the file. Onedrive supports cors for a lot of operations, but for downloading the file into javascript there is the following problem: As mentioned here: onedrive rest api manual I can send a request to: GET https://apis.live.net/v5.0/FILE_ID/content?access_token=ACCESS_TOKEN and it will reply with a location header redirecting the browser to the file. The problem is when I

Is it possible to import XML or JSON data from a table within a Word online document into Apps Script website as an HTML table?

江枫思渺然 提交于 2020-01-30 08:20:29
问题 I am building a web app using Apps Script. In this web app I have a table that needs to be populated from a table in a Word doc in OneDrive. This document is updated regularly, so I would prefer to programmatically update the content of the html table in Apps Script. Is this possible? If so, can anyone give me guidance as to how to accomplish this? I've started looking into importing xml from a url, but I'm not sure that I'm on the right track. 回答1: You need to incorporate the following steps