I am using the Python Dropbox package to pull team events:
dbx = dropbox.DropboxTeam(self.access_token)
result = dbx.team_log_get_events()
I need to pass the value of result along as a JSON object. When I try using json.dumps(result), I get this error:
TypeError: Object of type GetTeamEventsResult is not JSON serializable
Is there a way to cast to json/dict with the Dropbox package?
My other potential solutions would be to write my own method to cast it (seems tedious) or just make API calls instead of using the package.
result? You can use thejsonmodule to encode Python objects in JSON.