Sharing to Facebook error
-
Hi guys. I get this error when i try to share a post to facebook using nodebb: "Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode"
Could you help me?. Thank you! -
@Para-Aguilar-Quiero When a browser doesn't support Javascript, a bar appears in the header with the text you're seeing in the Facebook page.
Do you have Javascript enabled in your browser?
Usually Facebook pulls the data fine. i.e
-
I have the same issue.
-
Found that the issue is due to missing
og:type
on home page -
Solution for me:
--- a/src/meta/tags.js +++ b/src/meta/tags.js @@ -29,6 +29,9 @@ module.exports = function(Meta) { property: 'og:site_name', content: Meta.config.title || 'NodeBB' }, { + property: 'og:type', + content: 'website' + }, { name: 'keywords', content: Meta.config.keywords || ''
Copyright © 2024 NodeBB | Contributors