DeQmaTech.keep2shareSDK
1.2.1
.NET Core 2.1
.NET Standard 2.0
.NET Framework 4.6.1
dotnet add package DeQmaTech.keep2shareSDK --version 1.2.1
NuGet\Install-Package DeQmaTech.keep2shareSDK -Version 1.2.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DeQmaTech.keep2shareSDK" Version="1.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DeQmaTech.keep2shareSDK --version 1.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DeQmaTech.keep2shareSDK, 1.2.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DeQmaTech.keep2shareSDK as a Cake Addin
#addin nuget:?package=DeQmaTech.keep2shareSDK&version=1.2.1
// Install DeQmaTech.keep2shareSDK as a Cake Tool
#tool nuget:?package=DeQmaTech.keep2shareSDK&version=1.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Features
- Assemblies for .NET 4.5.2 and .NET Standard 2.0 and .NET Core 2.1
- Just one external reference (Newtonsoft.Json)
- Easy installation using NuGet
- Upload/Download tracking support
- Proxy Support
- Upload/Download cancellation support
List of functions:
- FileMetadata
- DeleteMultiple
- Delete
- Upload
- ListFolders
- CaptchaImage
- RequestCaptcha
- TestAccessToken
- AccountInfo
- RootList
- ListFiles
- CreateNewFolder
- Rename
- RemoteUpload
- RemoteUploadStatus
- Move
- MoveAndRename
- ChangePrivacy
Example:
'first get auth token (one time only)
Dim tokn = keep2shareSDK.Authentication.OneHourToken("user", "pass")
''set proxy and connection options
Dim con As New keep2shareSDK.ConnectionSettings With {.CloseConnection = True, .TimeOut = TimeSpan.FromMinutes(30), .Proxy = New keep2shareSDK.ProxyConfig With {.SetProxy = True, .ProxyIP = "127.0.0.1", .ProxyPort = 8888, .ProxyUsername = "user", .ProxyPassword = "pass"}}
''set api client
Dim CLNT As keep2shareSDK.IClient = New keep2shareSDK.KClient("xxxxxtokenxxxxx", con)
''general
Await CLNT.AccountInfo()
Dim cap = Await CLNT.RequestCaptcha()
Await CLNT.CaptchaImage(cap.captcha_url)
Await CLNT.TestAccessToken()
''file folder
Await CLNT.CreateNewFolder("root id = /", "new folder", True)
Dim cts As New Threading.CancellationTokenSource()
Dim _ReportCls As New Progress(Of keep2shareSDK.ReportStatus)(Sub(ReportClass As keep2shareSDK.ReportStatus) Console.WriteLine(String.Format("{0} - {1}% - {2}", String.Format("{0}/{1}", (ReportClass.BytesTransferred), (ReportClass.TotalBytes)), CInt(ReportClass.ProgressPercentage), ReportClass.TextStatus)))
Await CLNT.Upload("c:\\VIDO.mp4", UploadTypes.FilePath, "/", "VIDO.mp4", _ReportCls, cts.Token)
Await CLNT.Delete("id")
Await CLNT.DeleteMultiple(New List(Of String) From {{"id"}, {"id"}})
Await CLNT.FileMetadata("id")
Await CLNT.ListFiles("id", keep2shareSDK.KClient.LocationType.any, 50, 1, New keep2shareSDK.KClient.RootListOptions.SortOptions With {.name = keep2shareSDK.KClient.SoRt.ascending}, True)
Await CLNT.ListFolders
Await CLNT.Move("from id", "to id")
Await CLNT.MoveAndRename("from id", "to id", "rename to")
Await CLNT.RemoteUpload(New List(Of String) From {{"http://telerik.com/blob.mp4"}})
Await CLNT.RemoteUploadStatus(New List(Of String) From {{"jobid"}})
Await CLNT.Rename("id", "newname")
Await CLNT.RootList(keep2shareSDK.KClient.LocationType.folder, 50, 2, New keep2shareSDK.KClient.RootListOptions.SortOptions With {.name = keep2shareSDK.KClient.SoRt.ascending}, False, True)
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 2.1
- Microsoft.AspNet.WebApi.Client (>= 5.2.3)
- Newtonsoft.Json (>= 11.0.2)
- System.Drawing.Common (>= 4.7.0)
- System.Net.Http (>= 4.3.3)
-
.NETFramework 4.6.1
- Microsoft.AspNet.WebApi.Client (>= 5.2.3)
- Newtonsoft.Json (>= 11.0.2)
- System.Drawing.Common (>= 4.7.0)
- System.Net.Http (>= 4.3.3)
-
.NETStandard 2.0
- Microsoft.AspNet.WebApi.Client (>= 5.2.3)
- Newtonsoft.Json (>= 11.0.2)
- System.Drawing.Common (>= 4.7.0)
- System.Net.Http (>= 4.3.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.