Questions tagged «google-calendar-api»

4
链接添加到Google日历
我不清楚在网站上链接的确切格式,该链接会将单个事件添加到用户Google日历。我看到eventbrite在这里做了,但我希望有一些明确的规格或正确的链接 http://www.eventbrite.com/event/1289487893 http://screencast.com/t/6vvh1khS

5
如何创建将条目添加到日历的链接?
我在这家夜总会工作,目前正在为他们建立一个网站,他们举办了很多活动,并且他们的网站围绕活动而建,今天,他们为每个活动制作一个Facebook活动,但是拥有“添加到我的日历”按钮,将其添加到您的iCal或Google日历(甚至可能是Outlook)。 我设法弄清楚了如何制作日历供稿,但随后它将被添加为新日历,唯一的好处是人们可以“订阅事件”,但是为每个事件都拥有一个日历是很麻烦的。所以我想知道如何实现一个功能,使他们可以轻松地将其添加到主日历中。像mailto:链接那样思考,但如果可能的话,可以使用日历。 同样,在我讨论这个主题时,没有人知道是否可以将事件自动从Facebook导入到WordPress或将事件从WordPress自动导出到Facebook,这很好,但这并不是那么重要。

9
获取刷新令牌Google API
我的代码无法获得刷新令牌。我只能获取访问令牌,令牌类型等,我已经按照一些教程进行了操作,例如access_type=offline输入登录URL: echo "<a href='https://accounts.google.com/o/oauth2/auth?" . "access_type=offline&client_id=123345555.apps.googleusercontent.com& " . "scope=https://www.googleapis.com/auth/calendar+https://www.googleapis.com/auth/plus.me&response_type=code& " . "redirect_uri=http://www.sample.com/sample.php&state=/profile'>Google</a>"; 我获取访问令牌的字段: $fields=array( 'code'=> urlencode($authcode), 'client_id'=> urlencode($clientid), 'client_secret'=> urlencode($clientsecret), 'redirect_uri'=> urlencode($redirecturi), 'grant_type'=> 'authorization_code', ); 但我无法获取refresh_token,只有access_token,token_type,id_token和expires_in。

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.