railsアプリをtwitterで共有するときのogp設定を作成中です。
ページごとに内容を変える際に
<% set_meta_tags title: 'タイトル', description: 'ディスクリプション' %>
というようにすると思うのですが
ogの中のtitleなどはどのように指定すれば良いのでしょうか?
何卒よろしくお願いいたします。
参考サイト
ruby
1#application_helper.rb 2def default_meta_tags 3 { 4 site: 'サイト名', 5 title: 'タイトル', 6 reverse: true, 7 separator: '|', 8 description: 'ディスクリプション', 9 keywords: 'キーワード', 10 canonical: request.original_url, 11 noindex: ! Rails.env.production?, 12 icon: [ 13 { href: image_url('favicon.ico') }, 14 { href: image_url('icon.jpg'), rel: 'apple-touch-icon', sizes: '180x180', type: 'image/jpg' }, 15 ], 16 og: { 17 site_name: 'サイト名', 18 title: 'タイトル', 19 description: 'ディスクリプション', 20 type: 'website', 21 url: request.original_url, 22 image: image_url('ogp.png'), 23 locale: 'ja_JP', 24 }, 25 twitter: { 26 card: 'summary_large_image', 27 site: '@ツイッターのアカウント名', 28 } 29 fb: { 30 app_id: '自身のfacebookのapplication ID' 31 } 32 } 33 end
そのメソッドをどのように使ってogpを設定しているのかなどがわからず回答できません。
参考にしたサイトなどあれば追記願います。
https://creat4869.hatenablog.com/entry/2019/08/15/170109
こちらのサイトを参考にしました。