-1

I want to share image and content on facebook and twitter in rails like that

enter image description here I saw code for that

<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@gorails" />
<meta name="twitter:title" content="<%= yield :title %>" />
<meta name="twitter:description" content="<%= yield :meta_description %>" />
<meta name="twitter:image" content="<%= asset_url "open-graph.jpg" %>" />
<meta name="twitter:creator" content="@excid3" />

but not know how to integrate that. my purpose is just to share image on facebook, twitter

Haseeb Ahmad
  • 7,914
  • 12
  • 55
  • 133

1 Answers1

0

for facebook, check out https://developers.facebook.com/docs/sharing/webmasters

for twitter, this might be helpful https://dev.twitter.com/cards/types/summary

Lev
  • 24
  • 4