public bool DownloadProfileImageInHttp(IUserDTO userDTO, string filePath, ImageSize imageSize = ImageSize.normal)
        {
            var url = _userQueryGenerator.DownloadProfileImageInHttpURL(userDTO, imageSize);

            return(_webDownloader.DownloadFile(url, filePath));
        }