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.
Questions tagged [live-sdk]
154 questions
1
vote
1 answer
W8.1 Live SDK 5.6 - LiveAuthClient.InitializeAsync System.NullReferenceException
I'm developing a Windows 8.1 App (XAML/C#) with MVVM Light.
I used to keep my LiveId inside the code just for debugging, but now it's time to do the LogIn.
Currently i'm stuck with this piece of code:
this.authClient = new…

Leandro Soares
- 2,902
- 2
- 27
- 39
1
vote
1 answer
Live sdk access token android
i am using live sdk for integrating onedrive in my Android app i want to know that if there is a method which can initialize the client with access-token or is there any way by which i don't have to make user login multiple times, like in dropbox…

user3833717
- 11
- 1
1
vote
1 answer
Authentication error - Integration SkyDrive in iOS application
I am trying to integrate SkyDrive in my iOS application and the following is the code where I have written the login authentication code. The client ID provided here is the one assigned for the application at the developer site. But the…

user3663462
- 25
- 3
1
vote
1 answer
LoginWithMicrosoftAccountAsync always fails with 401
I have created a universal app and an azure mobile services. I followed the tutorial on adding microsoft account authentication as is provided at the azure website. I am using the newest Live SDK for this purpose.
Client side, i am using this code,…
user604613
1
vote
2 answers
Why doesn't Microsoft Skydrive download multiple files even though MS example shows it? (wl.download)
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…

raddevus
- 8,142
- 7
- 66
- 87
1
vote
1 answer
Skydrive sync in portable class library / mvvmcross
I have portable library (mvvmcross) solution and in Core project I have Live SDK method:
Client.DownloadCompleted += delegate(object o, LiveDownloadCompletedEventArgs e)
{...}
Client.DownloadAsync(SKYDRIVE_PATH + USER_DEFINED_FILE);
There…

Mikaèl
- 233
- 3
- 13
1
vote
1 answer
Live Connect authentication status always "Unknown"
I'm facing some problem when authenticating in my WP8 app via Live SDK.
I have added a SignInButton to my app:

anderZubi
- 6,414
- 5
- 37
- 67
1
vote
0 answers
Upload file to Skydrive with special characters and spaces
I am using LiveSDK for Windows Phone 8 (latest SDK version) to upload files:
LiveOperationResult res = await liveClient.BackgroundUploadAsync(_skyDriveFolderId, new Uri("/shared/transfers/" + myLocalFilename, UriKind.Relative),…

Hyndrix
- 4,282
- 7
- 41
- 82
1
vote
1 answer
LiveAuthClient broken?
It seems very much that the current version of LiveAuthClient is either broken or something in my setup/configuration is. I obtained LiveSDK version 5.4.3499.620 via Package Manager Console.
I'm developing an ASP.NET application and the problem is…

Kyto
- 45
- 1
- 1
- 6
1
vote
1 answer
How to limit contacts imported through Live SDK
Can we Set a limit on the number of contats returned by Live SDK?
https://apis.live.net/v5.0/me/contacts?access_token=xccxxxx';

Ritin
- 401
- 6
- 15
1
vote
1 answer
Why LiveConnectClient.BackgroundDownloadAsync fails if trying to "await" it?
I wrote a simple function to download a file from SkyDrive into IsolatedStorage.
public static async Task DownloadFileData( string fileID, string filename )
{
var liveClient = new LiveConnectClient( Session );
//…

eitan barazani
- 1,123
- 3
- 18
- 34
1
vote
1 answer
Live SDK: await client.GetAsync("me/skydrive/files?filter=folders") does not return
I'm working on a backup function for my app, and it's supposed to check if the needed folder already exists, otherwise create it.
Since I'm using VB.Net I cant use the GetCompleted event (only available in C#, which I have no experience with).
My…

Izaac Brånn
- 94
- 13
1
vote
1 answer
Trouble in connect with Connect Live --- SkyDrive Synchronizer with Azure Blob
I want to synchronize files between Skydrive and Azure blob storage.
I will run one background process on worker role which will do all this sync.
User Come to our website
Attach their sky drive account
Sign in on sky drive using oAuth on our…

SOF User
- 7,590
- 22
- 75
- 121
1
vote
0 answers
how to append the content to existing file in skydrive using livesdk
I am using the below code to upload the content on my phone to a file "SavedContent" on my skydrive.
App.liveConnectClient.UploadAsync("me/SkyDrive", "SavedContent" , fileStream, OverwriteOption.Overwrite);
App.liveConnectClient.UploadCompleted +=…

krrishna
- 2,050
- 4
- 47
- 101
1
vote
0 answers
Android Skydrive (LiveSdk) AssertionError (Unknown SkyDriveObject type) by clicking on Documents
im using the LiveSdk Sample from https://github.com/liveservices/LiveSDK-for-Android.
I entered my ClientID in the config file, compiled and started the sample Application.
Now i getting:
java.lang.AssertionError: Unknown SkyDriveObject type
if i…

benjamin ali
- 146
- 1
- 12