I am trying to develop an app that stores a user’s file on Skydrive. I am trying to use the Live SDK however there doesn’t seem to be much on Live SDK for Windows 7 using Visual Studio 2012 Professional. I currently have Live SDK installed via NuGet and I can access the classes etc from the .dll. The only problem is, I have no idea how to use it due to the lack of documentation. If anyone has a quick sample of how to at least sign in to Skydrive and/or access files from there it would be great! Even if someone can link me to an article detailing the above!
Please let me know if you need more info.
EDIT: CODE
Try
Dim auth As New LiveAuthClient("XXXXXXXXXXXXXXXXXX")
Dim loginresult As LiveLoginResult = Await auth.IntializeAsync(New String(0) {"wl.skydrive"})
MsgBox(loginresult.Status.ToString, MsgBoxStyle.OkOnly)
If loginresult.Status = LiveConnectSessionStatus.Connected Then
MsgBox("Signed In", MsgBoxStyle.OkOnly)
End If
Catch ex As Exception
MsgBox("Error signing in: " + ex.Message, MsgBoxStyle.OkOnly)
End Try
It appears that there are currently no official Live SDK’s for VB.net. If anyone does find an SDK let me know!