Zoho Remote API - UTF-8 Encoding
We have had feedback from quite a few developers and partners integrating Zoho's Remote API into their application about the document file name getting messed up when saving it back to their own servers. The reason for this discrepancy is attributed to: The name of the document being in language other than English. Presence of some special characters in the document file name.To offset this problem, partners and developers can encode the document file names using the 'UTF-8' character encoding mechanism.UTF-8
Zoho Remote API Update - Custom Save Notification Messages
We are happy to announce that partners and developers, integrating Zoho's Remote API into their application, can now send a custom save notification message to Zoho document servers. The custom message will be displayed when a user saves the document from any of the Zoho's Office Productivity Service (Writer, Sheet, Show) editors. Currently, Zoho handles both the scenarios of a document save and displays: Success Message (HTTP response code 200) - When the document is saved successfully. Error Message
Problem with uploading presentation file (ppt/pps) to Zoho Show with HttpWebRequest in .NET
I try to upload ppt/pps file from my website, and it work well, but when I use HttpWebRequest object (.NET) to upload and get the response, it crashs. My code: public static void Upload(string username, string password, string apiKey, string filePath) { var ticket = GetTicket(username, password); if (string.IsNullOrEmpty(ticket)) return; var requestUrl = "http://show.zoho.com/api/private/xml/uploadpresentation?apikey=" + apiKey + "&ticket=" + ticket; var request = (HttpWebRequest)WebRequest.Create(requestUrl);
Zoho Remote API: Sheets OK, Writer & Show problems
Hi all. I've been integrating the Remote API in a custom application for some days. First I added the Zoho Sheet functionality. Basically all it does is read the contents of an XLS file, and then it makes a PHP Curl call via POST to pass the file to your system and get the URL of the editor, which is loaded as soon as your server returns a response. With Zoho Sheet I found zero problems. Everything works perfectly! Great job. But today I started working with Zoho Writer and Zoho Show (via Remote
Zoho Remote Writer doesn't let any newly uploaded document be saved without modifications
Hello, My problem is that when opening a document from a file using Zoho Writer Remote API and I want to save it, it says document_already_saved when it has been just opened: Some of the times (i think most of them) the truth is, I opened this from an existing file somewhere and i want it to actually execute the "save" procedure that stores it on the remote server. A workaround I use and I have to tell the users to 'use' is adding a space in the end of a paragraph so Zoho Writer recognizes the
my document is not saved
i follow the example of api remote to save my document. but, if i look the debug, i am the message : {"statusValue":"datasaved","statusCode":"200"} what's the problem ? my code to save the doc is : <?php $tmp_filename = $_FILES['content']['tmp_name']; $upload_status = move_uploaded_file($tmp_filename,"/homez.xxx/champagnvn/www/test2.doc"); ?>
New document
Is there a way to start a new document in de Zoho Remote API?! Get the (url to the) editor with a blank document without having to upload an empty template myself?
Version check for zoho remote api writer
Hello, It would be very useful for me if we could provide both documents and check for changes between them, I think it wouldn't be too hard to implement since there is already a feature like this in the history review of zoho writer (the not remote one). Any inputs on this? Thanks for your attention.
API - Wrong document edited in Zoho
We use remote API to edit documents in Zoho Writer but few times (rarely) the document edited doesn't match the document we uploaded. It edits a document of someone else. For example, I'm french and work only on french documents but 4 times, documents I edited were written in german, dutsh or danish and so, belong to other people. Do we something wrong during the submit that could cause this issue ? Thanks for the help. Regards. Guillaume.
Borders & Font-Color --> Zoho Sheet Remote API
Hi, the font-colors and borders seem to get lost when i save the sheet via the remote API. Is this bug? Andy