我正在尝试在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&wkst=1&bgcolor=%23FFFFFF&src=vinothinibj%40gmail.com&color=%232952A3&ctz=Asia%2FCalcutta" style=" border-width:0 " width="800" height="600" frameborder="0" scrolling="no"></iframe>
答案 0 :(得分:1)
您需要首先查看身份验证(我现在正在努力解决)。
另请注意,公众可以通过私人链接查看私人日历。
https://www.google.com/support/calendar/bin/answer.py?answer=1631300&hl=en
-Markus