0

嗨,我正在尝试将 zoho 集成到我的网站中,并在浏览器中打开一个文档,我正在使用 Wamp 服务器。

这是我试图使用的代码:

 <html>
<head>
</head>
<body>

<form method="POST" action="http(s)://export.writer.zoho.com/remotedoc.im" target="_self" 

accept-charset="UTF-8">
<input type="hidden" name="url" value="http://localhost/paper.doc">
<input type="hidden" name="apikey" value="here goes api key">
<input type="hidden" name="output" value="url">
<input type="hidden" name="mode" value="normaledit">
<input type="hidden" name="filename" value="paper.doc">
<input type="hidden" name="lang" value="en">
<input type="hidden" name="skey" value="here goes secret value">
<input type="hidden" name="id" value="12345678">
<input type="hidden" name="format" value="doc">
<input type="hidden" name="saveurl" value="http://localhost/save.php">
<input type="submit" name="submit" value="Open/Edit">
</form>
</body>
</html>

我不知道我收到此错误:禁止

您无权访问此服务器上的 /http(s)://export.writer.zoho.com/remotedoc.im。

我已经正确输入了 api 密钥,而密钥我只是困惑并卡在这里。我被阻止了

这是文档:http ://apihelp.wiki.zoho.com/Open-Document.html

4

2 回答 2

1

您已将(s)从网址中取出,对吗?我知道这似乎是一个愚蠢的问题,但我想我应该检查一下,以防你忽略了它。该网址为我解析并给出“api 密钥无效”警告。

给出的错误似乎表明浏览器认为它是相对而不是绝对 url。

于 2010-12-29T17:33:53.903 回答
0

I dont know much more about ZOHO but i also want to implement this in my project in future. As i read in https://apihelp.wiki.zoho.com/Open-Document.html#mfs it says that saveurl must be publicly accessible and if it not accessible publicly it gives an error and localhost is not publicly accessible so it gives an error.

于 2014-04-15T05:12:01.357 回答