2

RailsAppsのLearn Ruby on Railsチュートリアルの第 22 章「SPREADSHEET CONNECTION」に従っています。

本とgitが示すようにすべてを行った後、このエラーが発生します

NoMethodError in ContactsController#create undefined method `new' for
#<String:0x00000004fe5778> Extracted source (around line #19): 17 18 19 20 21 22

    connection = GoogleDriveV0.login_with_oauth(Rails.application.secrets.email_provider_username, Rails.application.secrets.email_provider_password )
    ss = connection.spreadsheet_by_title('Aprendo')
    if ss.nil?
      ss = connection.create_spreadsheet('Aprendo')
    end

Rails.root: /home/action/workspace/aprendo

app/models/contact.rb:19:in `update_spreadsheet' app/controllers/contacts_controller.rb:10:in `create'

私はそれが何であるかわかりません。

私の contact.rb :

equire "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_with_oauth(Rails.application.secrets.email_provider_username, Rails.application.secrets.email_provider_password
)
    ss = connection.spreadsheet_by_title('Aprendo')
    if ss.nil?
      ss = connection.create_spreadsheet('Aprendo')
    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:

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

本のgitが言うように、secrets.ymlを変更しましたが、役に立ちません

4

1 に答える 1

2

以下を使用する必要があります。GoogleDrive.login_with_oauth

 def update_spreadsheet

      connection = GoogleDrive.login_with_oauth(access_token)
      )
    ...

end

access_token を取得する

# Authorizes with OAuth and gets an access token.
client = Google::APIClient.new
auth = client.authorization
auth.client_id = "YOUR CLIENT ID"
auth.client_secret = "YOUR CLIENT SECRET"
auth.scope =
    "https://www.googleapis.com/auth/drive " +
    "https://spreadsheets.google.com/feeds/"
auth.redirect_uri = "urn:ietf:wg:oauth:2.0:oob"
print("1. Open this page:\n%s\n\n" % auth.authorization_uri)
print("2. Enter the authorization code shown in the page: ")
auth.code = $stdin.gets.chomp
auth.fetch_access_token!
access_token = auth.access_token

次のように、2番目の方法を作成できます

これは、直面している問題に関連する抜粋です。

バージョン 1.0.0 は、0.3.x と 100% 下位互換性があるわけではありません。一部のメソッドが削除されました。特に、GoogleDrive.login は削除されているため、以下のコード例のように、代わりに GoogleDrive.login_with_oauth を使用する必要があります。

詳細はこちら: https://github.com/gimite/google-drive-ruby

新しいクラスで新しいファイルを実装できます

または、どこかに新しいメソッドを追加するだけです:

def new_access_token
  client = Google::APIClient.new
  ... #excluded some code
  access_token = auth.access_token
  access_token # this line important, returning access_token
end

これで、次のように pass を呼び出すことができます:connection = GoogleDrive.login_with_oauth(new_access_token)

新しいクラスを作成する場合は、次のようにします。

Class Token
  def new_access_token
  ...
  end
end

そのようにする方がクリーンな方法かもしれませんが、次の方法で呼び出すことができます。

token = Token.new
token.new_access_token

そしてそれを渡します:

GoogleDrive.login_with_oauth(token.new_access_token)
于 2016-04-06T08:26:13.403 に答える