从Google云端硬盘或一个驱动器中的特定文件夹中搜索图像

时间:2016-06-16 09:53:40

标签: c# google-drive-api

我想加载我的图像滑块,哪个图像来自谷歌驱动器或一个驱动器。我使用下面的代码为谷歌驱动器,但它返回所有文件,我想从特定文件夹。

GoogleConnect.ClientId = "xxxxxx";
GoogleConnect.ClientSecret = "xxxxxx";
GoogleConnect.RedirectUri = Request.Url.AbsoluteUri.Split('?')[0];
GoogleConnect.API = EnumAPI.Drive;
if (!string.IsNullOrEmpty(Request.QueryString["code"]))
{
    string code = Request.QueryString["code"];
    string json = GoogleConnect.Fetch("me", code);
    GoogleDriveFiles files = new JavaScriptSerializer().Deserialize<GoogleDriveFiles>(json); // This will returns the files      
}
else if (Request.QueryString["error"] == "access_denied")
{
    ClientScript.RegisterClientScriptBlock(this.GetType(), "alert", "alert('Access denied.')", true);
}

0 个答案:

没有答案