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
0
votes
1 answer

Get space quota Live SDK One Drive

I am developing an android application based on One Drive, using the Live SDK. I am stuck on how to get the available and free space for each user.
gambit
  • 107
  • 10
0
votes
1 answer

How would one capture and upload a video from WP8 to OneDrive?

So I have been working with the Live SDK for a few weeks. I've gotten an Android version of what I want done and I'm working on a Windows Phone 8 version. Basically, the goal is to create an app that can record a video and then upload that video to…
B-Stewart
  • 677
  • 2
  • 10
  • 27
0
votes
1 answer

How can I upload files into a shared folder on OneDrive using OneDrive API?

I am trying to upload files into a shared folder (from other users) on OneDrive using the Live SDK on Windows Runtime (version 5.6.0). However, it seems that the current version of the SDK does not support uploading to folders of other users. Is…
0
votes
0 answers

Accessing OneDrive from Azure Mobile Service

I'm developing a mobile app to share some content between users and I'm facing a weird problem. Currently, what the app does is to allow the users to download some files from the web and store them on their OneDrive account. The problem is that I…
StepTNT
  • 3,867
  • 7
  • 41
  • 82
0
votes
1 answer

Is it possible to access tasks via the Live SDK?

I am looking to write a program that will communicate using the Live SDK to access Tasks. My reason for wanting to do this is that I would like my program to update the task reminder to a date in the future continually if it is not yet complete. …
0
votes
1 answer

Returned value is null when downloading a file from OneDrive

As it is said in the documentation, I try to download a file way: try { LiveDownloadOperation operation = await connectClient.CreateBackgroundDownloadAsync(filePath); var result = await operation.StartAsync(); var file = result.File; //…
0
votes
1 answer

Sign in to multiple Microsoft account in Windows Store app

Is it possible to: sign-in to multiple Microsoft accounts in a Windows Store app? Mail app does it* sign-in to Microsoft account that is not the one used for logging in to Windows? Store app does it* I tried something like the following (taken…
TheBlueSky
  • 5,526
  • 7
  • 35
  • 65
0
votes
1 answer

Live SDK for windows phone 8

Hay there, I'm learning the live SDK fro windows phone 8 & I'm using Live SDK 5.5. I have downloaded the SDK, installed it and referenced it in my project I also have created a key for my application and I followed the exact code in here and that's…
a3adel
  • 1,223
  • 4
  • 15
  • 26
0
votes
0 answers

Microsoft Live SDK OneDrive ios multiaccounting

If you have experience working with Microsoft OneDrive (ex SkyDrive) using their official live-sdk - have you faced a problem of multi-accounting? Just on MS forum I found this post (And so I do want to make the same task): "I'm working on an IOS…
Aleksey Potapov
  • 3,683
  • 5
  • 42
  • 65
0
votes
1 answer

Microsoft.Live.LiveAuthException: User has not granted the application consent to access data in Windows Live

Hello I'm writing Windows phone application for working with OneDrive. My code is pretty simple: XAML:
Vovich
  • 321
  • 1
  • 3
  • 13
0
votes
1 answer

Obtaining user's contact list profile photos using live sdk

I want to get a profile picture for an user's contacts. I'm using live sdk with the scope "wl.basic" but I only get the following, {"id":"contact.6c9151b7000000000000000000000000", "first_name":"Jaiganesh alc", "last_name":null, "name":"Jaiganesh…
0
votes
1 answer

Can I get installed applications of phone from user's Windows Live ID in Windows Phone

I am developing Windows Phone application in that I want installed applications of phones but I searched a lot on this issue , there is no solution available. So I m trying to get Windows Live ID of windows phone so my question is that from Windows…
0
votes
1 answer

LiveConnectClient | DownloadAsync crashes without an exception

WP8, VS 2013 Live SDK (nuget) v5.5 private async void DownLoadImageFromSkyDrive(string imgUrl, Int32 number) { LiveConnectClient client = new LiveConnectClient(_currentSession); var image = await client.DownloadAsync(imgUrl + "/content"); …
KevinM
  • 39
  • 4
0
votes
1 answer

Single Sign On using Microsoft account and Azure Mobile Services in a C++ Windows Store app

I am trying to build Single Sign On functionality into my C++ Store app using Live SDK and Azure Mobile Services (similar to what is described for .NET apps here). I am using Azure Mobile C++ Library and the live_connect.h wrapper. Below is what my…
0
votes
1 answer

Login to SkyDrive using Live SDK

I'm migrating my Windows Phone 7.1 app to Windows 8. Unfortunatly, I have some problems with loging to SkyDrive using Live SDK on Windows 8. I'm using this code: LiveAuthClient authenticationClient = new LiveAuthClient(); try …
Jonatan Dragon
  • 4,675
  • 3
  • 30
  • 38