在撰写Daniel Kehoe的Learn Ruby on Rails书时,我进入了电子表格连接部分。我按照谷歌驱动器的解决方法,我得到消息发送闪光通知,但当我检查谷歌驱动器我没有看到创建
了解-Rails的实施例
电子表格。这是我的models / contact.rb文件。
require 'google_drive_v0'
class Contact
include ActiveModel::Model
attr_accessor :name, :string
attr_accessor :email, :string
attr_accessor :content, :string
validates_presence_of :name
validates_presence_of :email
validates_presence_of :content
validates_format_of :email, :with => /\A[-a-z0-9_+\.]+\@([-a-z0-9]+\.)+[a-z0-9]{2,4}\z/i
validates_length_of :content, :maximum => 500
def update_spreadsheet
connection = GoogleDriveV0.login(Rails.application.secrets.email_provider_username, Rails.application.secrets.email_provider_password)
ss = connection.spreadsheet_by_title('Learn-Rails-Example')
if ss.nil?
ss = connection.create_spreadsheet('Learn-Rails-Example')
end
ws = ss.worksheets[0]
last_row = 1 + ws.num_rows
ws[last_row, 1] = Time.new
ws[last_row, 2] = self.name
ws[last_row, 3] = self.email
ws[last_row, 4] = self.content
ws.save
end
end
这是contacts_controller.rb,用于显示来自' Contacts'的消息。应该发送到我的电子邮箱。
class ContactsController < ApplicationController
def new
@contact = Contact.new
end
def create
@contact = Contact.new(secure_params)
if @contact.valid?
@contact.update_spreadsheet
UserMailer.contact_email(@contact).deliver
flash[:notice] = "Message sent from #{@contact.name}."
redirect_to root_path
else
render :new
end
end
private
def secure_params
params.require(:contact).permit(:name, :email, :content)
end
end
当我加载服务器然后尝试提交联系表单时,我
身份验证失败:发布https://www.google.com/accounts/ClientLogin的响应代码403:错误= BadAuthentication
然后在终端:
WARNING: GoogleDriveV0.login is deprecated and will be removed in the next version. Use GoogleDriveV0.login_with_oauth instead. Completed 500 Internal Server Error in 153ms
google_drive (1.0.0) lib/google_drive_v0/session.rb:109:in `rescue in login'
google_drive (1.0.0) lib/google_drive_v0/session.rb:102:in `login'
google_drive (1.0.0) lib/google_drive_v0/session.rb:43:in `login'
google_drive (1.0.0) lib/google_drive_v0.rb:19:in `login'
...learn-rails/app/models/contact.rb:15:in `update_spreadsheet'
...learn-rails/app/controllers/contacts_controller.rb:10:in `create'
答案 0 :(得分:0)
我遇到了同样的错误,虽然我的问题是我使用POW来提供我的开发网站,但我采取的步骤可能会对你有所帮助。
正如您所做的那样,我在update_spreadsheet方法中对变量进行了硬编码,这很有效 - 证明方法和google_drive gem都很好。
然后我拉起了rails console并做到了
puts Rails.application.secrets.email_provider_username
它让我获得了我的电子邮件地址并证明了Rails可以看到我的环境变量。
假设您使用的是本书的Rails 4.2版本并已添加
gem 'web-console', '~> 2.0'
当您尝试发布表单并获得错误时,您的gem文件应该会出现控制台提示。我跑了
puts Rails.application.secrets.email_provider_username
再一次,但这次 nil 作为一个让我困惑的答案。
这让我意识到我正在使用POW(http://pow.cx - 一个非常酷的方式来提供您的开发网站)来提供网站,该网站使用自己的.powenv文件,因此无法访问我的变数。我通过运行rails server
并通过localhost:3000连接确认了这一点,我可以毫无问题地发帖。
所以将变量添加到.powenv(并通过添加.gitignore从git中删除文件)然后解决了问题。
希望上面的一些故障排除步骤可以帮助您,因为它可以帮助您完成本教程。