我已将电子表格设置为公开,我认为这意味着用户不应该需要授权才能访问和更改它,我只需要提供我的客户端ID和密码吗? (我是唯一一个将使用此应用的人,电子表格位于我自己的Google帐户中,该帐户也是该应用的所有者)
我在这里查看了文档:https://developers.google.com/google-apps/spreadsheets/?hl=en
我的代码完美无缺 - 它基本上只是用函数更新电子表格中的单个单元格,然后返回该单元格的值。
问题是,我不想继续通过网页进行授权。是否可以跳过授权的需要?或者至少自动通过代码授权而不是通过网页手动执行?
using Google.GData.Client;
using Google.GData.Spreadsheets;
namespace Spreadsheet{
class Program{
static void Main(){
OAuth2Parameters parameters = new OAuth2Parameters();
parameters.ClientId = "client-id-here";
parameters.ClientSecret = "client-secret-here";
parameters.RedirectUri = "urn:ietf:wg:oauth:2.0:oob"; //I'm not even sure what this is, I assume it's only necessary for web based applications
parameters.Scope = "https://spreadsheets.google.com/feeds https://docs.google.com/feeds";
//This is where the user is required to navigate to a page and retrieve access code
string authorizationUrl = OAuthUtil.CreateOAuth2AuthorizationUrl(parameters);
parameters.AccessCode = Console.ReadLine();
OAuthUtil.GetAccessToken(parameters);
string accessToken = parameters.AccessToken;
GOAuth2RequestFactory requestFactory =
new GOAuth2RequestFactory(null, "Spreadsheet", parameters);
SpreadsheetsService service = new SpreadsheetsService("Spreadsheet");
service.RequestFactory = requestFactory;
//spreadsheet related code here..
}
}
}
答案 0 :(得分:0)
此脚本在哪里运行?您正在使用的代码示例每次运行时都会尝试获取令牌。你有两个选择