Questions tagged «google-apps»

3
错误:invalid_client无应用程序名称
我正在为我的应用程序使用Google Apps API,并尝试使用OAuth2对其进行授权。我已经使用Google API控制台在其中创建了一个项目和一个应用程序。我正在使用以下URL进行授权: https://accounts.google.com/o/oauth2/auth&scope=https://www.googleapis.com/auth/admin.directory.user&redirect_uri=urn:ietf:wg:oauth:2.0:oob&response_type=code&client_id=(my application clientid) 我收到以下错误, Error: invalid_client no application name Request Details 我已经验证了clientid以及admin SDK的状态。

16
在哪里可以获得Google开发人员密钥
我正在使用Google API(例如聊天,联系人等)... developer_key,但仍在gdata文档中提到。 您可以在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' => '' 在哪里可以找到开发人员密钥? 我发现像这样的东西 http://code.google.com/apis/youtube/dashboard/gwt/index.html 但我知道这仅适用于youtube。

9
在Gmail中撰写邮件的网址(具有完整的Gmail界面,并指定为密件抄送,主题等)
我找到了一个帖子,提供了一个示例示例,该示例仅打开一个撰写消息窗口。但是,我希望它打开一个具有完整Gmail界面的窗口,但准备撰写新邮件。 当然这可行: https://mail.google.com/mail/u/0/#compose 但是,我还想向,密件抄送等添加一个主题。我尝试了以下类似操作,但无济于事: https://mail.google.com/mail/?to=inbox@example.com&bcc=admin@example.com&subject=Hey#compose 有任何想法吗?谢谢。

1
申请Google日历权限时弹出额外拨款
当用户尝试在我的网站上使用google进行注册时,Google会向用户显示上述3个弹出窗口,但是当我尝试进行注册时,不会向我显示相同的弹出窗口。我看到的就是这个- 这3个单独的弹出式窗口正导致我的网站大量下架。如何删除这3个不同的权限弹出窗口? Google登录按钮详细信息-使用React Google登录 <div className="manager-signup-container"> <div className="content">Join Peoplebox as a Manager to have productive 1:1s that drive actions.</div> <GoogleLogin className={`google-btn-${this.state.loginbtnStatus}`} clientId={GOOGLE_CLIENT_ID} buttonText="Sign up with Google" onSuccess={(response) => this.responseOauth(response, "google")} onFailure={this.responseGoogleFail} responseType="code" scope="profile email https://www.googleapis.com/auth/calendar.events https://www.googleapis.com/auth/calendar.readonly" accessType="offline" prompt="consent" disabled={this.state.loginDisabled} />
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.