Tag: google data api

我在哪里可以获得Google开发人员密钥?

我在Google API上工作,如聊天,联系人等等…我被困在如gdata doc中提到的developer_key 。 您可以通过https://code.google.com/apis/console获取此信息: 'developer_key' => '' 我已经: // OAuth2 Settings, you can get these keys at https://code.google.com/apis/console 'oauth2_client_id' => '', 'oauth2_client_secret' => '', 'oauth2_redirect_uri' => '' 我在哪里可以find开发者密钥? 我发现了一些这样的事情 http://code.google.com/apis/youtube/dashboard/gwt/index.html 但我明白这只是为了youtube。

google oauth2中的invalid_client

我试图做一个YouTubevideo上传的网页,因此我试图从谷歌API的控制台获取客户端ID,并在API控制台显示如下所示: Client ID: 533832195920.apps.googleusercontent.com Redirect URIs: http://bobyouku.ap01.aws.af.cm/testyoutube.php https://developers.google.com/oauthplayground 但是,当我尝试使用以下URLtesting我的帐户时: https://accounts.google.com/o/oauth2/auth?client_id=533832195920.apps.googleusercontent.com&redirect_uri=http%3A%2F%2Fbobyouku.ap01.aws.af.cm%2Ftestyoutube.php&scope=https%3A% 2F%2Fwww.googleapis.com%2Fauth%2Fyoutube&RESPONSE_TYPE =代码&ACCESS_TYPE =离线 它给出了invalid_client的结果。 即使我在oauth2操场上尝试,也会发生同样的失败 所以谁知道发生了什么?

如何才能使用JavaScript访问Google表格电子表格?

我想只使用JavaScript访问Google Spreadsheets。 (没有.NET C#,Java) 我来到这里 ,很震惊地知道JavaScript不能访问Google Spreadsheet。 请告诉我如何使用JavaScript或其任何框架(如jQuery等)访问(CREATE / EDIT / DELETE)Google Spreadsheets。

使用Google Data API使用C#访问Google电子表格

Google电子表格中包含一些信息。 有什么办法可以通过提供谷歌证书和电子表格地址从.NET读取这些信息。 是否有可能使用Google数据API。 最终,我需要从DataTable中的Google电子表格中获取信息。 我该怎么做? 如果有人尝试过,请分享一些信息。