I'm new to OAuth, and it took me a while to find out that I had to put "Authorization: Bearer {{my access token here}}". So I was hoping to ask this question.
I open this link in a tab every time my add-on starts:
'https://www.dropbox.com/1/oauth2/authorize?client_id=' + authParam_client_id + '&response_type=' + authParam_response_type + '&redirect_uri=' + authParam_redirect_uri + '&force_reapprove=' + authParam_force_reapprove + '&disable_signup=' + authParam_disable_signup;
However is there an easier way, as once the user allowed my app for first time, then I shouldn't have to open tab for him to click that allow button right?
Oh aside: Where is this auth bearer thing documented?
Thanks guys!