Chilkat2-Python
Chilkat2-Python
Dropbox: Get Space Usage
See more Dropbox Examples
Demonstrates how to get the Dropbox space usage information for the current user's account.Chilkat Chilkat2-Python Downloads
import sys
import chilkat2
success = False
# This example requires the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
rest = chilkat2.Rest()
# Connect to the www.dropbox.com endpoint.
bTls = True
port = 443
bAutoReconnect = True
success = rest.Connect("api.dropboxapi.com",port,bTls,bAutoReconnect)
if (success != True):
print(rest.LastErrorText)
sys.exit()
rest.AddHeader("Authorization","Bearer DROPBOX-ACCESS-TOKEN")
responseStr = rest.FullRequestNoBody("POST","/2/users/get_space_usage")
if (rest.LastMethodSuccess != True):
print(rest.LastErrorText)
sys.exit()
# Success is indicated by a 200 response status code.
if (rest.ResponseStatusCode != 200):
# Examine the request/response to see what happened.
print("response status code = " + str(rest.ResponseStatusCode))
print("response status text = " + rest.ResponseStatusText)
print("response header: " + rest.ResponseHeader)
print("response body (if any): " + responseStr)
print("---")
print("LastRequestStartLine: " + rest.LastRequestStartLine)
print("LastRequestHeader: " + rest.LastRequestHeader)
sys.exit()
jsonResponse = chilkat2.JsonObject()
jsonResponse.Load(responseStr)
jsonResponse.EmitCompact = False
print(jsonResponse.Emit())
# {
# "used": 3032115,
# "allocation": {
# ".tag": "individual",
# "allocated": 2147483648
# }
# }
#