How to include meta tags to React SSR route that have to wait on API call?

1.1k Views Asked by At

I have a server-rendered React project where I'm using React-Helmet to get meta tags from client-side components to the server using Helmet.renderStatic(). I can get facebook crawler to read hard coded meta tags, but can't get meta tags that depend on API response from by backend to get read by facebook's crawlers. I depend on API response to get information like title, description, and keywords to update my meta-tags. I need to be able to share these dynamic pages on facebook. Any suggestions?

1

There are 1 best solutions below

2
On

Check out react-helmet-async - a fork of react-helmet first made by the New York Times. It was made specifically for your use case: https://www.npmjs.com/package/react-helmet-async