在rails中嵌入谷歌日历

时间:2011-12-01 13:02:28

标签: google-calendar-api

我正在尝试在rails页面中显示Google日历。如果我登录浏览器(在Gmail帐户中)我可以在localhost中看到包含详细信息的Google日历,如果我从Google帐户退出,我无法在localhost中查看我的日历详细信息。如何解决这个问题?

我正在使用iframe将Google日历嵌入到rails中。

require 'gmail'

class CalendarController < ApplicationController
  def event_display
    gmail = Gmail.new('username','password')
  end
end

在event_display.html.erb

<iframe src="https://www.google.com/calendar/b/0/embed?height=600&amp;wkst=1&amp;bgcolor=%23FFFFFF&amp;src=vinothinibj%40gmail.com&amp;color=%232952A3&amp;ctz=Asia%2FCalcutta" style=" border-width:0 " width="800" height="600" frameborder="0" scrolling="no"></iframe>

1 个答案:

答案 0 :(得分:1)

您需要首先查看身份验证(我现在正在努力解决)。

另请注意,公众可以通过私人链接查看私人日历。

https://www.google.com/support/calendar/bin/answer.py?answer=1631300&hl=en

-Markus