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
0
votes
1 answer
How to bypass the signin step when using LiveSDK?
I am writing a Windows Phone application to test another application and want to use skydrive to save screenshots of that application. I am using LiveSDK and each time I deploy the app I have to insert username and password to connect to skydrive.…

Pooneh
- 176
- 5
0
votes
1 answer
Live SDK Windows 8.1 connection error
I'm trying to run photoSky example provided by microsoft for Live SDK + XAML+ Windows 8 developers. But I'm getting an error at the following statement:
LiveLoginResult authResult = await authClient.LoginAsync(new List() { "wl.signin", "wl.basic",…

Zuzu JH
- 607
- 2
- 10
- 22
0
votes
1 answer
"Unable to open database file" after uploading to SkyDrive
I have a WP7 app that uses a SQLite database. A feature of the app is backing up to SkyDrive, which works fine, but afterwards my app throws the "unable to open database file." If I wait a bit (anywhere from 10 to 60 seconds) it'll start working…

Michael Itzoe
- 1,949
- 4
- 29
- 49
0
votes
2 answers
LiveAuthClient InitializeAsync hangs
I am having trouble with a demo from msdn
The demo
On the method updateUserName:
public static async Task updateUserName(TextBlock userName, Boolean signIn)
{
try
{
// Open Live Connect SDK client.
…

Mario Stoilov
- 3,411
- 5
- 31
- 51
0
votes
1 answer
How to get all PowerPoint files from Skydrive?
I'm trying to build a windows 8 metro app in C# which shows all PowerPoint Presentations in your SkyDrive Folder. Therefore I'm using the Windows Live SDK.
To get the information about all PowerPoint Files in the users SkyDrive folders I already…

Evils
- 857
- 3
- 12
- 31
0
votes
1 answer
How can We Get Live Emails to Windows Phone
I am trying to Get My live Emails to My wp App
Is it Possibly to get Emails into our App,
Now i am Getting Email Address and Date Of Birth and Some Other But Not getting Email's
My Xaml Code is Like this

Satti
- 559
- 2
- 8
- 26
0
votes
5 answers
How to upload a file from IsolatedStorage to SkyDrive?
I am trying to upload a text file, myFile.txt, to SkyDrive. Below is the code:
private async void btnUpload_Click( object sender, System.Windows.RoutedEventArgs e )
{
Client = new LiveConnectClient( _session );
string filename =…

eitan barazani
- 1,123
- 3
- 18
- 34
0
votes
1 answer
Can you use LiveSDK from Console Application?
I'm trying to make a console application which accesses my SkyDrive account, however I cannot figure out how to get the Live SDK working.
I'm running on Live SDK version 5.4 and this is the code I'm trying to run - the loginResult.Status is always…

Steffen
- 13,648
- 7
- 57
- 67
0
votes
1 answer
Downloading Multiple Files from SkyDrive with Live 5.3
I'm trying to download one or more files from SkyDrive using the Windows Phone emulator. I'm pretty new at the Live SDK and I'm lost following these pages:
multiple file download using SkyDrive…

Traffic Cone
- 3
- 1
0
votes
1 answer
WP7 - How to download and save files from skydrive
I have to save files from folder on skdrive to my isolated storage (if files in isolated storage exist then override them).
This is my code:
private void RestoreData(LiveConnectClient liveClient, string storedFolderId)
{
…

Earlgray
- 647
- 1
- 8
- 31
0
votes
1 answer
How to read the list of files in a specific SkyDrive folder?
I know I can get the list of file in SkyDrive root by using liveClient.GetAsync("me/skydrive/files") and if I know the folder ID I can use liveClient.GetAsync(folderId + "/files"), so I don't want these as answers :)
Is there an easy way to get the…

TheBlueSky
- 5,526
- 7
- 35
- 65
0
votes
1 answer
Can't upload 14mb file to SkyDrive via LiveSDK from my wp7 device
It's not a problem to upload 5mb file but when I try to upload 14mb my application is down.
fileStream = // get some file as stream from isolated storage
uploadClient = new LiveConnectClient(session);
uploadClient.UploadCompleted += new…

mktn
- 23
- 3
0
votes
1 answer
How to store LiveConnectClient and session object of Skydrive API in sharedpreferences
I am able to login to skydrive using skydrive API in android.
Now i want to use that same session object and liveconnectclient object in another avitivity.
How can i do that?
public void onAuthComplete(LiveStatus status, LiveConnectSession…

Prannoy Tank
- 110
- 7
0
votes
1 answer
SkyDrive authentication doesn't work in Windows Store App
I'm developing Windows Store App and I want to use LiveSDK to upload some file on SkyDrive. But I'm getting some problem. I have found some sample SkyDrive App which work correct and I get some code which should make authentication to Live…

Mateusz Rogulski
- 7,357
- 7
- 44
- 62
0
votes
1 answer
Android livesdk how to getharedPreferences after LiveAuthClient
I am using following source https://github.com/liveservices/LiveSDK-for-Android.
Do someone know how to get shared preferences after the LiveAuthClient process. I have to get
REFRESH_TOKEN_KEY and COOKIE_DELIMITER from the sharedprefences file and…

benjamin ali
- 146
- 1
- 12