Skydrive 操作已超时

发布于 2025-01-07 11:27:57 字数 211 浏览 0 评论 0原文

我正在尝试使用此代码连接到 skydrive,它是控制台 C# 应用程序:

var client = new SkyDriveServiceClient();

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

并且我收到此异常:操作已超时

有人知道这个问题的解决方案是什么吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

跨年 2025-01-14 11:27:57

好的,从下载最新版本 (Changset 68942)
地点。下载后,在 Visual Studio 中打开项目(位于文件夹 trunk/src/SkyDriveServiceClient.sln 中),并将 SkyDocsServiceClient 类中的变量 SkyDocsServiceUri 更改为以下内容:

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

更改后编译项目以构建程序集文件。然后,您需要引用项目中的程序集并尝试再次执行代码。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文