问题标签 [box-view-api]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
159 浏览

box-view-api - Box -> 查看 API -> 无法通过身份验证来创建会话

在这个网站:https ://developers.box.com/view/ 我确实按照示例中的说明进行操作(使用 Postman 或 curl)

curl https://view-api.box.com/1/sessions \ -H "授权:令牌 YOUR_API_KEY" \ -H "内容类型:应用程序/json" \ -d '{"document_id": "ABC123"} ' \ -X 发布

YOUR_API_KEY 替换为我的 api 密钥 ABC123 替换为我的 pdf 文件。

但我得到了结果:{“message”:“请求中不支持的媒体类型'application/json,application/x-www-form-urlencoded'。”,“type”:“error”,“request_id”:“1f3d91c9489247579c78e7ceaa5e67c8”}

请帮我。

谢谢

0 投票
1 回答
345 浏览

.net - Box -> 查看 API -> 无法为 document_id 创建会话

按照 Box.com View API 的说明创建会话

我使用 RestSharp 编写代码:

但我得到了回应:

而 document_id 19877746783 是完全正确的。

我不知道我为什么收到这条消息。谢谢

0 投票
1 回答
109 浏览

javascript - 如何为 box view api viewer.js 中使用的资产 url 添加主题

我想知道如何为 box view api viewer.js 添加主题

这有效并显示计划文件。

但是,如果尝试添加主题参数,例如 ASSETS_URL/theme/dark 或 ASSETS_URL?theme=dark,这将不起作用。

有人可以帮忙吗?查看我的文档时,我需要获得一个主题。

0 投票
1 回答
196 浏览

box-api - 无法使用 box view api 获取文档 ID

在我的应用程序中,获取“ https://dl.boxcloud.com/ *” url 并将其发送到 View API 后,我收到此错误:

您可以使用此 chrome 扩展来重新创建此错误

我尝试了其他其他客户端,它工作正常。除了在我的应用程序和上面的扩展程序中。

0 投票
1 回答
80 浏览

box-view-api - 使用 Box View API 转换 PDF 时缺少 stylesheet.css

我们一直在测试 Box View API,并注意到对于某些 PDF,.zip 文件中没有返回 stylesheet.css,即使您可以在 SVG 中看到它被引用。

有没有其他人经历过这个?是因为 PDF 还是 Box 的问题?

谢谢!

0 投票
1 回答
98 浏览

box-view-api - 用于 Box View API 的 .NET 库

我正在使用 DocX 在我的网络服务器上生成 word 文档,我希望用户将它们下载为 PDF,因为此任务的转换器不多,我正在考虑使用 Box View API(以前是 Crocodoc),因为我有一个开发者账号。

我能够找到 Box API 的 .NET 库,但找不到 Box View API 的 .NET 库。

有人可以指出我正确的方向吗?

0 投票
1 回答
47 浏览

box-view-api - 使用本地标识符而不是框视图标识符 - 这可能吗?

我想知道我们是否可以在将文档传递给 box-view 时使用我们自己的标识符,然后根据这个标识符请求一个视图会话。这将阻止我们在 box-view id 和我们自己的本地 id 之间实现标识符映射的需要。

0 投票
1 回答
205 浏览

box-view-api - 无法使用框视图 curl api 上传 pdf - json 解析错误

使用 box view api 上传文件时出现此错误。“JSON 解析错误 - 无法解码任何 JSON 对象”

这是我来自 Windows 命令提示符的代码。

任何指针将不胜感激!

0 投票
1 回答
102 浏览

node.js - box-view ,上传缓冲区出现错误不支持的文档类型

查看将缓冲区上传到 Box。但我一直收到以下错误:

我的代码如下:

回应是:

0 投票
0 回答
233 浏览

php - How to upload a file using box view api in php

I am trying to utilize in php uploading a file using box view api. I am using the library from box-view-api GitHub

Here is my code:

But why am I getting an error message:

Can someone show me how to implement it correctly with php? Thank you in advance.