コチラで質問したものの続きです。
https://teratail.com/questions/230374
前回、ご助言して頂いた記事
https://qiita.com/hilotter/items/dfcf287c8c6704128ddd
に従い、コードを書き直し、
ツイッターに投稿したのですが、下記のようなエラーがでます。
必要部分のコードです。
class PostsController < ApplicationController before_action :login_required, {only: [:create]} def create @post = Post.new( title_id: params[:title_id], content: params[:content], user_id: @current_user.id ) if @post.save flash[:notice] = "投稿を作成しました" twitter_client.update(@post.content) redirect_to("/poststitles/#{params[:title_id]}") else render("posts/new") end end private def twitter_client Twitter::Client.new( :oauth_token => @current_user.token, :oauth_token_secret => @current_user.secret ) end end
このエラーの修正方法をご助言頂ければ幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/20 02:31
2019/12/20 03:05
2019/12/20 03:49
2019/12/20 03:55
2019/12/20 04:22
2019/12/20 07:50