diff options
author | aunsane <aunsane@gmail.com> | 2017-04-23 15:37:35 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2017-04-23 23:14:45 +0300 |
commit | 71a8d5202cc65a6e714956e78852a7b87ce51b35 (patch) | |
tree | 03b10b45c351ded65e495ce83120a9ebfa73ea50 /plugins/CloudFile/src/Services/yandex_api.h | |
parent | 6aceb85c1362e96e74b24b8ae598d58aa882bc7a (diff) |
CloudFile: Yandex: generate short donload link
Diffstat (limited to 'plugins/CloudFile/src/Services/yandex_api.h')
-rw-r--r-- | plugins/CloudFile/src/Services/yandex_api.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/CloudFile/src/Services/yandex_api.h b/plugins/CloudFile/src/Services/yandex_api.h index 7548f6bd14..f70964bc78 100644 --- a/plugins/CloudFile/src/Services/yandex_api.h +++ b/plugins/CloudFile/src/Services/yandex_api.h @@ -79,6 +79,17 @@ namespace YandexAPI AddUrlParameter("path=%s", ptrA(mir_urlEncode(path))); } }; + + class GetResourcesRequest : public HttpRequest + { + public: + GetResourcesRequest(const char *token, const char *path) : + HttpRequest(REQUEST_GET, YADISK_API) + { + AddOAuthHeader(token); + AddUrlParameter("path=%s", ptrA(mir_urlEncode(path))); + } + }; }; #endif //_YANDEXSERVICE_API_H_ |