Zoom Download URL Issue

Hi @tommy

It looks like that worked!! So Due to setting the password required in all Zoom Meetings, we need to pass the access_token now to download the file?

The new code

new_download_url = download_url +'?access_token=' + zoom_access_token
try:
    response = requests.get(new_download_url, stream=True)
except requests.exceptions.ConnectionError as err:
    print repr(err)
    response = requests.get(new_download_url, stream=True)
try:
    with open(full_filename, 'wb') as fd:
        for chunk in response.iter_content(chunk_size=1024 * 8):
            if chunk:
                fd.write(chunk)
                fd.flush()
                os.fsync(fd.fileno())
    return True
except Exception as e:
    print(e)
    return False