Huynh Nhọn
Huynh Nhọn

Reputation: 23

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

Upvotes: 1

Views: 1258

Answers (1)

Mahesh Karia
Mahesh Karia

Reputation: 2055

Possible options you can check or try out.

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

Upvotes: 1

Related Questions