How to make URL of this expression - curl https://api.dropbox.com/1/account/info -H "Authorization: Bearer <access token>", I do not understand that there is -H . Can you write an example, thanks
The -H is short for --header. This line adds an Authorization header with the value Bearer <access token>.
-H
--header
Authorization
Bearer <access token>