Goal is to play audio file from dropbox. Using dropbox python sdk I can get the folders and files but the `media` doesn't have valid file to play with.
def post(self, request):
request_body = json.loads(request.body)
path = request_body['path']
client = helper.dropbox_client(request.user.profile.dropbox_access_token)
media_info = client.media(path=path)
return JsonResponse(media_info, safe=True)
The `media_info` have the dict contains `url` but that is not valid means it not playing the content.
How do make that work ?