dpc-sdp / ripple

Ripple is the frontend framework for Single Digital Presence, delivered using Nuxt and Vue.js
Apache License 2.0
60 stars 37 forks source link

Open Graph meta tags should use "property" and not "name" - causes linkedIn to ignore the og:image. #846

Closed alan-cole closed 3 years ago

alan-cole commented 3 years ago

https://ogp.me/#structured

Open Graph tags should be defined as: <meta property="og:image" content="https://example.com/ogp.jpg" />

however the current implementation uses name: https://github.com/dpc-sdp/ripple/blob/master/packages/ripple-nuxt-tide/lib/core/tide-helper.js#L131 <meta name="og:image" content="https://example.com/ogp.jpg" />

alan-cole commented 3 years ago

Looks to be fixed as of: https://github.com/dpc-sdp/ripple/pull/892