Questions tagged [live-sdk]

Live SDK provides a set of controls and APIs that enable applications to integrate single sign-on (SSO) with Microsoft accounts and access information from SkyDrive and Outlook.com on Windows Phone and Windows 8.

154 questions
1
vote
3 answers

Live SDK - server_internal_error - message - An error occurred while retrieving the resource. Try again later

Currently it looks like the lice SDK returns error 500 for all request. Also the interactive SDK Microsoft provides here returns the same error: http://isdk.dev.live.com/dev/isdk/ISDK.aspx?category=scenarioGroup_core_concepts&index=1 My application…
dei79
  • 186
  • 2
  • 5
1
vote
1 answer

can't upload to OneDrive using LiveSDK from Windows Phone 8.1 RT

I am trying to upload a 1 KB file to OneDrive to an existing folder. The application is WinRT on a real Windows Phone 8.1 device. The code is extremely simple and is taken from documentation's examples: var lcc = new LiveConnectClient(session); …
Bogdan Verbenets
  • 25,686
  • 13
  • 66
  • 119
1
vote
1 answer

LiveSDK 5.6.3 not working in UWP store app

I have a universal windows store app targeting Windows 10. In a previous version of the app targeting Windows 8.1 I used the LiveSDK (the 5.6 version here) to access data from the user's MS Live account using the LiveAuthClient. In the new version…
joshb
  • 5,182
  • 4
  • 41
  • 55
1
vote
2 answers

Universal Windows Plateform And Live SDK

I have a problem. I recently installed VS 2015 and Windows 10 on my computer. Having Universal Apps are amazing and I plan to convert some of my programs on UWP. But I have a problem. In one of my programs, I allow the user to save its datas on its…
1
vote
1 answer

Get a file from OneDrive and use data of xml file into C# application

I have place a xml file online on OneDrive and shared whit everyone that use my program. Now I want to read this into my C# application. I have try a lot of code. A list below: I have try whit a HttpClient and a HttpResponseMessage. But it give me…
H. Pauwelyn
  • 13,575
  • 26
  • 81
  • 144
1
vote
1 answer

Share files with between group of user using Microsoft Live sdk

I am developing an application that requires to share files between users using Microsoft Live sdk. But only resource that I came across is by providing a shared link or embed link which expires after some time and are open to public usage. Instead,…
1
vote
1 answer

How to persist the LiveConnectSession in LiveSDK-iOS

After I finished the Microsoft Live oAuth, the LiveConnectSession is not nil and everything is working. But after I restart the simulator or device, the LiveConnectClient's LiveConnectSession is nil. How do I persist the LiveConnectSession to…
yong ho
  • 3,892
  • 9
  • 40
  • 81
1
vote
2 answers

How to solve BackgroundUploadAsync error?

I am using BackgroundUploadAsync API to upload a file to OneDrive. Most of the times the function works fine, but sometimes the call returns with this error message: System is busy with a previous background Upload... I tried closing and…
eitan barazani
  • 1,123
  • 3
  • 18
  • 34
1
vote
1 answer

Using asynchronous functions with UI synchronously

I have an application (WinForms). It simply grabs some data, does some work on it, then uploads the result to some cloud storage. I'm now using some third party code which handles the authentication with the cloud storage for me. This code will…
1
vote
1 answer

Sign in to OneDrive without typing user informations

I need help to obtain an authorize code, is there any way to get one without accepting anything or any window that pops up. I need this for my service as an automated process. I tried like a thousand ways but nothing works. Please does anyone know a…
1
vote
1 answer

How to dowload/upload file to onedrive

I have dynamic xml maker program, it downloads some data on some sites and creates an xml file, then saves it in a debug folder. Now I need upload this xml file to my OneDrive, and I will make a Windows Phone 8 app for downloading this xml…
Murat KA
  • 137
  • 1
  • 7
1
vote
3 answers

BackgroundUploadAsync Error object not set to an instance

I tried to upload a file to OneDrive. I'm successfully connecting and authenticating to OneDrive but when attempting to upload, I get the error: Object reference not set to an instance of an object. The code is: IsolatedStorageFile iso =…
Kn0rK3
  • 73
  • 7
1
vote
1 answer

List entire file list

I need to retrieve the whole OneDrive file list of the user, to sync it to my local database. Is there a good solution? I don't want to recursively traverse the whole file tree, which is very inefficient... At first I thought I could do it with…
Christian Göllner
  • 5,808
  • 4
  • 19
  • 20
1
vote
0 answers

How can I use the Live SDK on the client to login to my own Web API?

Fellow programmers, It is hard for me to wrap my head around this whole token based OAuth authorization flow so please forgive me my eventual stupidity and broken english (I'm from Poland). I'm developing a web service using .NET's Web API 2…
1
vote
1 answer

REST API - "Extracted Text" property OneDrive

How could I retrieve the extracted text property of images in OneDrive? OneDrive runs an OCR on images and shows the extracted text. A user can also correct the mistakes in the text and update it (next time, it won't run OCR and will directly just…