简体   繁体   中英

How to get share's url of a file using Dropbox python API?

I want to print share's Link from a file using API dropbox = python
My code:

import requests
import json

url = "https://api.dropboxapi.com/2/sharing/create_shared_link"

headers = {
    "Authorization": "Bearer ACCESS_TOKEN_REDACTED",
    "Content-Type": "application/json"
}

data = {
    "path": "/132005.jpg"
}

r = requests.post(url, headers=headers, data=json.dumps(data))

Now i want to get url to share like:

https://www.dropbox.com/s/o3hniburr4byytu/132005.jpg?dl=0

What print??? Thank bro

Possible options you can check or try out.

print r.json()
print r.content
print r.text
print r.status_code

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM