Tag: Egnyte API
Sending and receiving big files using Egnyte.API nuget package
Handling big files can be a problem when sending it through web. Simple REST calls are enough for small or medium files, but it’s limitation is a size of a request, that cannot be larger then 2GB. For files larger than that, you have to send or download file in chunks or as a stream.… Continue reading Sending and receiving big files using Egnyte.API nuget package
Using Egnyte.API package for connecting to Egnyte cloud storage
Egnyte is a company, that offers secure and fast file storage in the cloud for business customers. I have written more about getting started with Egnyte API in my previous post. Egnyte.API is a nuget package, that I’ve written in .Net and it supports: .Net Framework 4.5 Windows Phone 8.1 Xamarin It contains support for… Continue reading Using Egnyte.API package for connecting to Egnyte cloud storage
Getting started with Egnyte API in .Net
Egnyte is a company that provides software for enterprise file synchronization and sharing. Egnyte offers a cloud storage for business users to securely access and share data across the company. API offers RESTful interface, all request and responses are formated as JSON, strings are encoded as UTF-8 and all calls must be done over HTTPS.… Continue reading Getting started with Egnyte API in .Net