我正在开发一个需要访问简单数据库的应用程序" (谷歌电子表格)与用户ID。
我尝试使用Oauth2.0但这不是我需要的。
我使用此代码来访问工作表:
private static SheetsService AuthorizeGoogleApp()
{
UserCredential credential;
using (var stream =
new FileStream("client_secret.json", FileMode.Open, FileAccess.Read))
{
string credPath = System.Environment.GetFolderPath(
System.Environment.SpecialFolder.Personal);
credPath = Path.Combine(credPath, ".credentials/sheets.googleapis.com-dotnet-quickstart.json");
credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
GoogleClientSecrets.Load(stream).Secrets,
Scopes,
"user",
CancellationToken.None,
new FileDataStore(credPath, true)).Result;
Console.WriteLine("Credential file saved to: " + credPath);
}
// Create Google Sheets API service.
var service = new SheetsService(new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = ApplicationName,
});
return service;
}
但是使用此代码,C#应用程序会打开一个浏览器,要求用户登录他的Google帐户。
我需要通过API访问,因此它对用户是透明的。 我已经拥有api密钥,但我不知道如何使用,而且我在Google网站上找不到任何文档。
你能帮我看一些简单的专栏吗?
提前致谢!