I am trying to develop one web application using JAVA to retrieve files and folders from box.com.
For this I am using OAuth Process. In this process I have taken "access_token". By using this "aceess_token" I need to make a request to API V2.
For this, box-api people have given One URL:
https://www.box.com/api/2.0/folders/0 -H "Authorization: Bearer {acceess_token}"
So, My questions are:
- What is "Authorization : Bearer"?
- How to append this string to url?
- How to pass "access_token"?