how to download something from onedrive unity
using UnityEngine;
using System;
using System.Net;
using System.IO;
void DownloadFile()
{
WebClient client = new WebClient();
client.DownloadFileAsync(new Uri("Download URL"), "Save path");
}