完整日历谷歌整合

时间:2015-02-03 12:42:42

标签: javascript fullcalendar google-calendar-api

我想将完整日历与我的公共Google日历整合

我正确地做了一切 日历显示但它不会从谷歌日历中检索任何信息 在谷歌项目中,请求数为0 请帮我找到问题

这是我的代码:

 <script type='text/javascript' src='fullcalendar/lib/jquery.min.js'></script>
  <script type='text/javascript' src='fullcalendar/lib/moment.min.js'></script>
 <script type='text/javascript' src='fullcalendar/gcal.js'></script>
 <script type='text/javascript' src='fullcalendar/fullcalendar.js'></script>
 <link rel="stylesheet" href="fullcalendar/fullcalendar.css"/>


<script type='text/javascript'>

$(document).ready(function() {
    $('#calendar').fullCalendar({
        googleCalendarApiKey: 'AIzaSyDsSKWeApvsm8aSRDvUdTv2fTVTL272GMM',
        events: {
            googleCalendarId: 'bk2cp46c4jr179p79j9qo98f2g@group.calendar.google.com'
        }
    });
});
</script>

<div  id='calendar'></div>

1 个答案:

答案 0 :(得分:2)

当我尝试执行您的代码时,我收到此消息:

Google Calendar API: Access Not Configured. The API (Calendar API) is not enabled for your project. Please use the Google Developers Console to update your configuration. 在这里试了一下:http://jsfiddle.net/wyu757pr/1/

按照此页面的步骤操作: http://fullcalendar.io/docs/google_calendar/

所以看起来你有一个API密钥。为Calendar API启用日历。

3. Find "Calendar API" in the list and turn it ON.&lt; ---我猜这是你的问题。

并且不要忘记 Make your Google Calendar public

摘自http://fullcalendar.io/docs/google_calendar/