onedrive

split text to columns in excel

旧巷老猫 提交于 2019-12-24 18:21:09
问题 I've this table in Excel Online (onedrive site) : PEOPLE FIRSTNAME LASTNAME AGE ID DETAILS DETAILS DETAILS I would like to copy there lines of text and that it all will be filled into the appropriate rows. for example, Mariah Carey 30 5555 Marc Terenzi 31 7777 will fill the table by: PEOPLE FIRSTNAME LASTNAME AGE ID DETAILS Mariah Carey 30 5555 DETAILS Marc Terenzi 31 7777 Assuming that each full name contains only two names so " " (a space) can be an indicator for the new word. How can I do

javascript - upload files to skydrive

孤人 提交于 2019-12-24 13:45:16
问题 Need some help. I'm trying to upload files to SkyDrive by Javascript but I'm encountering some problems. I'm using the code provided by this link http://msdn.microsoft.com/en-us/library/live/hh550848.aspx. But I can't seem to make it work. $('#btnSample').click(function (e) { WL.login({ scope: "wl.skydrive_update" }).then( function (response) { WL.upload({ path: "me/Public", element: "file" }).then( function (response) { alert('FILE UPLOADED'); }, function (responseFailed) { alert("Error

SkyDrive / Dropbox Sync for Files/Database in Android

允我心安 提交于 2019-12-24 10:44:42
问题 I want to sync the local database file in the Android app with the users' DropBox or SkyDrive account. Anything would do. I am not able to get a running code. Please help. Here is the code I got from the official DropBox site, but it says error at "final static private AccessType ACCESS_TYPE = AccessType.APP_FOLDER;" as NoClassDefFoundError public class DBRoulette extends Activity { private static final String TAG = "DBRoulette"; ///////////////////////////////////////////////////////////////

Using Python to download an Excel file from OneDrive results in corrupt file

耗尽温柔 提交于 2019-12-24 08:47:01
问题 I am trying to download an excel file from a OneDrive location. My code works okay to get the file, but the file is corrupt (I get an error message): import urllib2 data = urllib2.urlopen("enter url here") with open('C:\\Video.xlsx', 'wb') as output: output.write(data.read()) output.close() print "done" I use the guest access to the excel file so that I don't have to work with authentication. The resulting file seems to be 15KB, the original is 22KB. 回答1: You can't just download the Excel

How do i display files from a users OneDrive using the Microsoft Graph Api

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-24 08:37:23
问题 I'm currently working with the OneDrive API to get files from a users OneDrive. I need to be able to display a file from OneDrive dynamically, depending on what element a user clicks on. I Know that I can go into my OneDrive and get a Embedded Link that I can use to display a file from my OneDrive, but this is not what I need. I attempted to use the Embedded Link combined with data binding but the link requires a authorization token unique the initial embedded link. Essentially I want a user

Is a browser required for Onedrive/Graph Authentication

会有一股神秘感。 提交于 2019-12-24 07:46:13
问题 It appears via the OneDrive API documentation that a user must always "authenticate" using a web-browser to access the OneDrive API. This is not helpful for system accounts. Am I interpreting this correctly? Or is there a way to achieve step one without a browser: Step 1. Get an authorization code To start the sign-in process with the code flow, use a web browser or web-browser control to load this URL request. GET https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=

Unable to send an invitation of the folder using Microsoft.Graph Api

牧云@^-^@ 提交于 2019-12-24 07:36:13
问题 I am trying to send an invitation for the folder but I keep getting this error: An invalid operation was attempted while processing this request. My code is: var graphclient = AuthenticationHelper.GetGraphServiceClient(); List<DriveRecipient> recpient = new List<DriveRecipient>() { new DriveRecipient { Email = "abcd@hotmail.com", Alias="abcd" } }; // var info = await graphclient.Me.Request().GetAsync(); var invite = graphclient.Me.Drive.Root.ItemWithPath("trying").Invite(recpient, false, new

Microsoft OneDrive API InvalidAuthenticationToken CompactToken parsing failed with error code: -2147184105

旧巷老猫 提交于 2019-12-24 06:48:19
问题 I have looked at the two similar questions in StackoverFlow and on the web but I still don't understand what I should do. I want to download a file that is located on OneDrive programmatically using a bash script (with curl). So I've seen here that I can use the code flow to access Microsoft Graph. So I proceeded like that (I inspired myself from the Jay Lee answer): 1- I get the code with this URL https://login.live.com/oauth20_authorize.srf?client_id=10c492f9-132a-4079-adae-382dad9d4339

Is there a client side javascript library for OneDrive for Business that provides a file/folder picker control? [closed]

假装没事ソ 提交于 2019-12-24 05:56:14
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I'm looking for a file picker control like the one offered in the OneDrive (live connect) javascript library, but which instead is for "OneDrive for Business". In other words, I want to be able to prompt the user to select a "OneDrive for Business" document, which I can then do something with using (presumably)

Is there a client side javascript library for OneDrive for Business that provides a file/folder picker control? [closed]

微笑、不失礼 提交于 2019-12-24 05:56:07
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I'm looking for a file picker control like the one offered in the OneDrive (live connect) javascript library, but which instead is for "OneDrive for Business". In other words, I want to be able to prompt the user to select a "OneDrive for Business" document, which I can then do something with using (presumably)