Can't open new xls file
Can't open new xls file
Hi,
I've some problem when I use remote api in particular when I try to use Zohosheet to open a new doc. I develop my own widget able to connect to zoho and open a new or existing file in my browser.
Now, I'm using my widget to open an existing doc or xls file, it's works fine ! I try to use the same method to open a new doc file, and it's works ! But when I use this method to open a new xls file, unfurtunatly it doesn't work ^^ ! It's very strange because I open succesfully a new csv file.
For now, I just print the response of the zohoserver for check if my widget works.
**********
When I try to use open doc file, i sent :
Zoho url :
- http://export.writer.zoho.com/remotedoc.im?apikey=myAPIKey&output=url
Variables :
- id=0f2a5116ad152302f73ca65becfd0cd5
- content= 'My content in incomprehensible language ^^'
- filename=toto.doc
- format=doc
- saveurl=http://mydomain.com/Zoho/save.php
- persistence=false
Response :
- URL=http://export.writer.zoho.com/editor.im?doc=EKKI7waBd68Nx70l WARNING= RESULT=TRUE
**********
When I try to use open xls file, i sent :
Zoho url :
- http://sheet.zoho.com/remotedoc.im?apikey=myAPIKey&output=url
Variables :
- id=11b9d018444aa57a528707d15e3d384b
- content= 'My content in incomprehensible language ^^'
- filename=anatole.xls
- format=xls
- saveurl=http://mydomain.com/Zoho/save.php
- persistence=false
Response :
RESULT=TRUE URL=http://sheet.zoho.com/editor.do?doc=12001000000897767
**********
When I try to open a new doc file (.doc) :
Zoho url :
- http://export.writer.zoho.com/remotedoc.im?apikey=myAPIKey&output=url
Variables :
- id=5cf2fbeac38f7846bc1709b5e51443ee
- content=
- filename=test.doc
- format=doc
- saveurl=http://test.aceduc.com/Zoho/save.php
- persistence=false
Response :
URL=http://export.writer.zoho.com/editor.im?doc=zzx73GM0C03wd6703F WARNING= RESULT=TRUE
**********
When I try to open a new txt file (.txt) :
Zoho url :
- http://export.writer.zoho.com/remotedoc.im?apikey=myAPIKey&output=url
Variables :
- id=51734fea491c62c42d3192e89a0ace26
- content=
- filename=test2.txt
- format=txt
- saveurl=http://mydomain.com/Zoho/save.php
- persistence=false
Response :
URL=http://export.writer.zoho.com/editor.im?doc=EGd771N70M0cd6703F WARNING= RESULT=TRUE
**********
When I try to open a new csv file (.csv) :
Zoho url :
- http://sheet.zoho.com/remotedoc.im?apikey=myAPIKey&output=url
Variables :
- id=dfe8a06633d16aef3c1fe707217d0492
- content=
- filename=test3.csv
- format=csv
- saveurl=http://mydomain.com/Zoho/save.php
- persistence=false
Response :
RESULT=TRUE URL=http://sheet.zoho.com/editor.do?doc=12001000000897777
**********
And then, when I try to open a new xls file (.csv) :
Zoho url :
- http://sheet.zoho.com/remotedoc.im?apikey=myAPIKey&output=url
Variables :
- id=633015d0606bf69261bac2385971d2b4
- content=
- filename=test4.xls
- format=xls
- saveurl=http://mydomain.com/Zoho/save.php
- persistence=false
Response :
Error Occurred
I try to use an other APIKey, it's same.
I try to open a new file with SXC extension it's same for the xls file...
Someone can help me ?