Egnyte is a company that provides software for enterprise file synchronization and sharing. The technology can store files in a company’s existing data center, as well as cloud computing storage.
Questions tagged [egnyte]
13 questions
2
votes
1 answer
How can I upload pdf files in Egnyte using Rest API and Java
Having the PDF files in local drive(D:). Need to upload those PDF files in Egnyte with the help of Rest API and Java

Priyadarsini Muthuvel
- 175
- 16
1
vote
0 answers
Is there a way to download files automatically off of a (Egnyte) cloud drive link?
We access the cloud drive through an Egnyte website link. The cloud website has an option to select or deselect which files to download, seen on the left of the picture. The "Download Files" button on the right is what downloads the files. I've had…

JoYi
- 132
- 8
1
vote
0 answers
How to integrate egnyte with Document and Media widget of liferay 7 or Is there any other way to integrate egnyte using third party application
I am trying to integrate egnyte repository with liferay 7 using Document and Media widget to display the files and folders in UI.But since Document and Media supports CMIS web service and Atom url options. But didn't found option for integrating…

BharatPW
- 11
- 1
1
vote
2 answers
How Can I read file from Egnyte folder through Python?
Also I want to move this file in another folder and give output file on another folder. All folders are on Egnyte and using Python
client = egnyte.EgnyteClient({"domain": "apidemo.egnyte.com",
"User_Name": "Password"})
folder =…

Imran Rafiq
- 308
- 2
- 5
- 15
1
vote
2 answers
Unclear on making an API call after authentication?
I am looking on how to use an APIs, more specifically Egnyte's API.
From their documentation, I must first get a oauth2 token, which I was able to get successfully.
Here are their documentation:…

popopanda
- 371
- 5
- 18
1
vote
1 answer
HTTURLConnection setFixedLengthStreamingMode leads to SSL broken pipe exception
I am trying to upload a file to a REST API from Egnyte If I don't use setFixedLengthStreamingMode(...) the file is uploaded without getting exceptions, when I use setFixedLengthStreamingMode(...) I get once in while a IO/SSL Exception -> Broken…

David
- 3,971
- 1
- 26
- 65
0
votes
1 answer
How can I display byte encoded PDF in HTML?
My goal is to download a file from a file-sharing application (Egnyte) and render it in my own HTML. I'm working in Django.
I'm getting a 200 response from the storage service:
response.headers:
{'Content-Type':…

DaCoPro
- 1
0
votes
2 answers
Power Automate Json Schema
I am using power automate to pull some Json data from the Egnyte API. Power Automate generates a schema from example queries. The problem is the query it generates will not work on all queries because it will set type to "string" and some null…

Michael Hearn
- 557
- 6
- 18
0
votes
1 answer
Web API, C# - Call a document library API recursively to get all content
I am using a document library. It could have folders and files in it.
My requirement is to fetch all content from the document library using an API (https://some.domain.com/folder/{id})
My current logic is using STACK
At root folder -
public async…

Hershika Sharma
- 11
- 3
0
votes
0 answers
Unclear on making an API call
I am looking for some help with how to use the Egnyte API to make a call using PowerShells invoke-restmethod to list files/folders - https://developers.egnyte.com/docs/read/File_System_Management_API_Documentation#List-File-or-Folder
From their…

kissland
- 1
0
votes
2 answers
File Upload Egnyte API
I am trying to upload a file to an account via Egnyte API. The CURL command says:
curl -v --request POST\
-H "Authorization: Bearer 2v8q2bc6uvxtgghwmwvnvcp4"\
--upload-file\
~/Desktop/test.txt…

Nick M
- 31
- 6
0
votes
1 answer
PHP Curl Error code 25
I tried to search the web but I couldn't find a clear point on the issue I'm trying to figure out.
I have a situation where the uploaded files will be sent over to another server via FTP (Egnyte). I have a localhost setup and it succeeded uploading…

Dbx
- 23
- 1
- 8
-1
votes
1 answer
Egnyte chunked api upload example in java
How to write java code for egnyte chunked upload and send to rest service of egnyte api.
https://developers.egnyte.com/docs/read/File_System_Management_API_Documentation#Chunked-Upload
long size = f.getTotalSpace();
int sizeOfFiles = 1024 *…

Udhayam P
- 11
- 4