Google表格ODBC驱动程序

时间:2017-08-29 10:58:09

标签: odbc

我想在C# windows application中开发 Google表格ODBC驱动程序,例如 CData ODBC驱动程序

CData OBDC驱动程序访问我的Gmail帐户提供以下连接详细信息:

DRIVER= {CData ODBC Driver for GoogleSheets};
_persist_oauthaccesstoken=XXXXXXXXXXXXXXXXXXXXXXXXXXX; 
_persist_oauthexpiresin=3600;
_persist_oauthrefreshtoken=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX;
_persist_token_timestamp=1503999951866

我想生成 oauthaccesstoken, oauthexpiresin, oauthrefreshtoken, token_timestamp.

我有 Client ID and Client secret 。如何生成上面的键?

提前致谢

1 个答案:

答案 0 :(得分:1)

我正在使用以下连接字符串来连接Google工作表。

DRIVER={CData ODBC Driver for GoogleSheets};Other='InitiateOAuth=GETANDREFRESH;CheckPromptMode=false;OAuth SettingsLocation=C:\Users\Test\New Text Document.txt';

此处'OAuth SettingsLocation'是一个文本文件,其中包含我们的Gmail帐户的访问令牌。

我希望它有用。这对我有用。