Is it possible to upload a file via the Box V2 API without requiring the user to login. I don't want to have to make my users create Box accounts - is it possible for them to upload a file using my account, or perhaps the API key instead of OAuth?
Asked
Active
Viewed 884 times
2 Answers
0
OAuth works by exchanging login credentials for an access token and refresh token. If you persist your access token and allow your users to submit requests using that access token, that would be equivalent of the user being logged in under your account.
Please note that the Box V2 access tokens only have a lifetime of an hour. So after that time, you will need to refresh it using the refresh token.

letstango
- 789
- 6
- 14
0
What about enabling uploads by email? Each folder will have a unique (and hard to guess) email address that you can send emails with attachments to. If you give that email address to users, they can upload that way.

John Kitchin
- 2,236
- 1
- 17
- 25