box-view-api

How to create a Box View app?

大兔子大兔子 提交于 2019-12-13 08:46:52
问题 BOX used to allow creation of BOX View apps before. There is no option to select BOX View API today. Did this change or is there a way to switch a Content App to a view app? 回答1: According to an email from Box Customer Services, they are no longer providing the View API for free users. So if you are a free user, that is why you can no longer create a View application. If you are a paid developer or trying to replace a View Application you are advised to contact Customer Services. 来源: https:/

Box -> View API -> Can not create session for an document_id

ⅰ亾dé卋堺 提交于 2019-12-11 09:58:49
问题 To follow the instruction of Box.com View API on how to create a session curl https://view-api.box.com/1/sessions \ -H "Authorization: Token YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"document_id": "ABC123"}' \ -X POST I use RestSharp to write code: var client = new RestClient("https://view-api.box.com/1/sessions"); RestRequest request = new RestRequest(Method.POST); request.RequestFormat = DataFormat.Json; request.AddHeader("Authorization", "Token