完整日历 google 整合

Full calendar google integration

我想将完整日历与我的 public google 日历集成

我做对了一切 日历显示但未从 google 日历中检索任何信息 在 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>

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

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. <--- 我想那是你的问题。

别忘了 Make your Google Calendar public.

引用自http://fullcalendar.io/docs/google_calendar/