Skydrive 操作已超时
我正在尝试使用此代码连接到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,从此下载最新版本 (Changset 68942)
地点。下载后,在 Visual Studio 中打开项目(位于文件夹 trunk/src/SkyDriveServiceClient.sln 中),并将 SkyDocsServiceClient 类中的变量 SkyDocsServiceUri 更改为以下内容:
更改后编译项目以构建程序集文件。然后,您需要引用项目中的程序集并尝试再次执行代码。
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:
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.