live-sdk

LiveSDK 5.6.3 not working in UWP store app

 ̄綄美尐妖づ 提交于 2019-12-02 10:06:08
问题 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 of the app, I figured I'd use the most recent version of the LiveSDK (5.6.3 available as a nuget package here) but when I install the nuget package, I am unable to to access the Microsoft.Live namespace. For example, the following statement: using

Universal Windows Plateform And Live SDK

冷暖自知 提交于 2019-12-02 04:17:29
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 OneDrive. And if OneDrive is unavailable, the datas are stored on local devices. And when OneDrive is available, the newly stored datas are pushed to OneDrive. Synchronisation in fact. So it is the problem. In the UWP dll named Universal.Live I have installed Live SDK 6 with Nuget. During the package installation, there is some work done to see if

LiveSDK 5.6.3 not working in UWP store app

只愿长相守 提交于 2019-12-02 03:20:29
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 of the app, I figured I'd use the most recent version of the LiveSDK ( 5.6.3 available as a nuget package here ) but when I install the nuget package, I am unable to to access the Microsoft.Live namespace. For example, the following statement: using Microsoft.Live; Produces the error "The type or namespace 'Live' does not exist in the namespace

LiveConnectClient.BackgroundUploadAsync, is not working when phone not connected to usb

折月煮酒 提交于 2019-12-01 21:06:29
I'm trying to use LiveConnectClient.BackgroundUploadAsync in wp8, to upload copy of some data. Her is my code: var progress = new Progress<LiveOperationProgress>(); progress.ProgressChanged += progress_ProgressChanged; try { LiveOperationResult res = await liveClient.BackgroundUploadAsync(folderID, new Uri(@"\shared\transfers\" + backupFile.Name, UriKind.Relative), OverwriteOption.Overwrite, new System.Threading.CancellationTokenSource().Token, progress); dynamic result = res.Result; fileID = result.id; } catch (Exception ex) { System.Diagnostics.Debug.WriteLine(ex.Message); progress

“SSL23_GET_SERVER_HELLO:unknown protocol” Error Trying to Reach Outlook smtp Server

人走茶凉 提交于 2019-12-01 20:49:49
I'm trying to send emails from an Outlook account in my iOS application. I'm using Mailcore2 and Outlook's Live-SDK. I am able to receive emails, but get an error when I try to send emails: "a stable connection to the server could not be established". To investigate the issue, I went into the terminal and tried to connect via SSL: openssl s_client -crlf -connect smtp-mail.outlook.com:587 The response I got back was: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol:/SourceCache/OpenSSL098/OpenSSL098-50/src/ssl/s23_clnt.c:607 I don't know exactly what this error means, after a

LiveConnectClient.BackgroundUploadAsync, is not working when phone not connected to usb

那年仲夏 提交于 2019-12-01 20:44:23
问题 I'm trying to use LiveConnectClient.BackgroundUploadAsync in wp8, to upload copy of some data. Her is my code: var progress = new Progress<LiveOperationProgress>(); progress.ProgressChanged += progress_ProgressChanged; try { LiveOperationResult res = await liveClient.BackgroundUploadAsync(folderID, new Uri(@"\shared\transfers\" + backupFile.Name, UriKind.Relative), OverwriteOption.Overwrite, new System.Threading.CancellationTokenSource().Token, progress); dynamic result = res.Result; fileID =