如何使用 Yandex Disk c# Api
Posted
技术标签:
【中文标题】如何使用 Yandex Disk c# Api【英文标题】:how can use Yandex Disk c# Api 【发布时间】:2020-07-23 09:56:01 【问题描述】:我们想使用 yandex 磁盘 api。用户可以使用yandex磁盘上传和删除文件。
我想从登录页面获取令牌。我尝试了很多sdk,但找不到示例代码正常工作。
你能帮忙吗? 我用https://github.com/yandex-disk/yandex-disk-sdk-csharpsdk
但是sdk是WPF我用winform
this.sdkClient.AuthorizeAsync(new WebBrowserBrowser(browser), CLIENT_ID, RETURN_URL, this.CompleteCallback);
…
private void CompleteCallback(object sender, GenericSdkEventArgs<string> e)
if (this.AuthCompleted != null)
this.AuthCompleted(this, new GenericSdkEventArgs<string>(e.Result));
this.Close();
public event EventHandler<GenericSdkEventArgs<string>> AuthCompleted;
【问题讨论】:
【参考方案1】:在 GitHub 页面底部实现您的问题的解决方案:https://github.com/raidenyn/yandexdisk.client
// PM> Install-Package YandexDisk.Client
using YandexDisk.Client.Http;
using YandexDisk.Client.Clients;
namespace Yandex_Disk
class Yandex_Disk_Functions
private const string Token = "AgADAASAUssBGGAADSFfcRFRBurE1Rstu0WtsR7-d2";
internal static async void UpLoad(string DiskPath, string LocalPath) =>
await new DiskHttpApi(Token).Files.UploadFileAsync(DiskPath, false, LocalPath, CancellationToken.None);
internal static async void DownLoad(string DiskPath, string LocalPath) =>
await new DiskHttpApi(Token).Files.DownloadFileAsync(DiskPath, LocalPath);
【讨论】:
以上是关于如何使用 Yandex Disk c# Api的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Yandex JS Api 地图上设置固定大小的对象?