Since it’s 2016 and the single-page application is on the rise, what is Twitter’s plan to support dynamically added meta tags?
The way my application works is no matter which URL the user requests, /index.html is returned and all routing is done on the client side (via React Router). This is great because my responses are static which means I can throw them behind a CDN for great, cheap performance around the world.
I then generate all content (meta tags included) dynamically on the client. This works great for SEO because Google executes my JS and understands that the response sent from my server isn’t representative of my content.
However, Twitter doesn’t seem to. Any ideas if or when support for this will be added?