문제

I am trying to connect to skydrive with this code, it is console C# application:

var client = new SkyDriveServiceClient();

client.LogOn("username", "password");

and I got this exception: The operation has timed out.

Anyone know what is solution for this problem?

도움이 되었습니까?

해결책

Ok, download the latest version (Changset 68942) from this location. After download open the project (located in folder trunk/src/SkyDriveServiceClient.sln) in Visual Studio and change the variable SkyDocsServiceUri in the class SkyDocsServiceClient to the following:

public static readonly Uri SkyDocsServiceUri = new Uri("https://docs.live.net/SkyDocsService.svc");

After the change compile the project to build the assembly file. Then you need to reference the assembly from your project and try to execute your code again.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top