Angular 4 – Update Meta tags dynamically for Facebook (Open graph)

Open Graph OG Tags must be within the sourcecode!

You need to provide a static html page containing the the open graph tags like og:image og:title and og:description in the html sourcecode, since facebook, twitter and co a just scraping the plain html without rendering it through javascript. Angular dynamically updates the dom through js and therefore the crawlers just get the initial index.html.

There are several ways to serve an html containing open graph
tags ans solve your issue:

  • Serverside rendering with angular universal
  • use an proxy rendering your page
  • overwriting index.html on the fly replacing og tags
  • serving static html pages (not sure if this is supported by angular)

I guess you already use something like ngx-meta to add og tags?

Angular Universal – Server Side Rendering with meta tags in Angular 2/3/4/5

I guess server-side rendering is the most appropriate way to solve your issue. For this you can host a node server or use eg. AWS Lambda. The disadvantage with this, your app has to be actively hosted and can not be served statically anymore. Anyways this seems to be the best way since it also is improves SEO. Angular Universal is the term to search for:

Angular Universal Prerendering on build

You can also prerender specific routes on the build process and serve angular as a static app with multiple prerendered index.html files. If you only have few static routes this works perfectly fine. Thinking of more generic routes with dynamic parts, this is not the solution. Go for server side rendering. The angular universal boilerplate also contains an example for this. See prerender.ts

Alternative Solutions

Prerendering Angular with a proxy to provide OG Tags

If you like to avoid implementing serverside / prerendering during the build process (setting up angular universal sometimes is a pain for not good structured apps.) you can try to use a proxy service prerendering you page. Take a look at eg. prerender.io.

Overwriting index.html

Redirect all requests to an script which overwrites the og:tags. Eg. Using PHP and .htaccess to overwrite og tags this is possible with modern environments too. Eg. you could use cloudfront / api gateway and a lambda function. Have not seen an example for this though.

Facebook Cache and Open Graph Debugging

Be aware that caches may still have cached the open graph information from their first crawl. Ensure your source code is the lastest and all caches, reverse proxies like nginxx, cloudfront are cleared.

Use Facebook Debugger to debug open graph caches and clear facebook opengraph cache

Leave a Comment