使用 zoho api 在浏览器中打开文档

发布于 2024-10-09 11:26:10 字数 1281 浏览 3 评论 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

HI im trying to integrate zoho into my website and open a document in browser
Im using Wamp server.

This the code im trying to work with:

 <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>

I dont know i get this error:
Forbidden

You don't have permission to access /http(s)://export.writer.zoho.com/remotedoc.im on this server.

I have entered the api key correctly and the secret key
Im just confused and stuck here.Im blocked

Here is the documentation : http://apihelp.wiki.zoho.com/Open-Document.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蘑菇王子 2024-10-16 11:26:10

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

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

You have taken the (s) out of the url right? I know it might seem like a silly question but I thought I should check in case you had overlooked it. The url resolves for me and gives an 'api key is invalid' warning.

The error given would seem to indicate the browser thinks its a relative instead of absolute url.

梦开始←不甜 2024-10-16 11:26:10

我对ZOHO了解不多,但我也想将来在我的项目中实现这一点。正如我在 https://apihelp.wiki.zoho.com/Open-Document 中读到的那样.html#mfs 它表示 saveurl 必须可公开访问,如果不可公开访问,则会出现错误,而 localhost 不可公开访问,因此会出现错误。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文