I am trying to build an integration for our app with Box.The user needs to be able to pick files stored inside box and move it our application.
Looking at Box documentation, there seems to be two options for this:
The first one seems to be based on Oauth which is not necessarily a bad thing. This just means that we will have integrate it through the backend code.
The second options seems to claim that it does not need Oauth. When I use it, I seem to be getting a download url for chosen file(s). I could potentially use this to get hold of the file contents and the url seems to work without any authentication. Can I leverage this safely to access the contents of the user's "box" folder and transfer the files to my application. Also, is it recommended for production use. Please let me know.