Skip to content

Instantly share code, notes, and snippets.

@tbvinh
Last active August 12, 2020 07:49
Show Gist options
  • Save tbvinh/7b61304a59275c64222c2f77b687f93b to your computer and use it in GitHub Desktop.
Save tbvinh/7b61304a59275c64222c2f77b687f93b to your computer and use it in GitHub Desktop.
Dropbox API steps sample
step1: Begin authorization, Appkey=y3kthiwm35u9rkb
https://www.dropbox.com/1/oauth2/authorize?client_id=y3kthiwm35u9rkb&response_type=code
return
QZeVpNETOYAAAAAAAAAADntntoFJ8KHbPecSHzxZz64
step2: Obtain an access token
curl https://api.dropbox.com/oauth2/token \
-d code=QZeVpNETOYAAAAAAAAAAD9K82SUt7z8OAuWSyce3ReY \
-d grant_type=authorization_code \
-u y3kthiwm35u9rkb:<pass>
return
{"uid": "3426216496", "access_token": "sl.Afq3_XzNOHvoojYQvt6R_jXdsUhoBXaOUwhioefTlXXtD9n7nm7ZPhgxy8P9Te_AQi4jQ5MVEG8GiJkzNUpVC25ynN0KEKH_cFBDAbMFU5aUCnphqXXBW7l_I5Dv-KL0QhsmMss", "expires_in": 14399, "token_type": "bearer", "scope": "account_info.read files.content.read files.content.write files.metadata.read", "account_id": "dbid:AAC_Jf1-N98eD9uv05W-PBMtIOst5Guuk4w"}
Step3: Upload a file to server
curl -X POST https://content.dropboxapi.com/2/files/upload \
--header "Authorization: Bearer sl.Afq3_XzNOHvoojYQvt6R_jXdsUhoBXaOUwhioefTlXXtD9n7nm7ZPhgxy8P9Te_AQi4jQ5MVEG8GiJkzNUpVC25ynN0KEKH_cFBDAbMFU5aUCnphqXXBW7l_I5Dv-KL0QhsmMss" \
--header "Dropbox-API-Arg: {\"path\": \"/Matrices.txt\",\"mode\": \"add\",\"autorename\": true,\"mute\": false,\"strict_conflict\": false}" \
--header "Content-Type: application/octet-stream" \
--data-binary @lexorvn.csr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment