Make my website dynamically loaded data available to Facebook Open Graph Object Scrapper
Posted
by
fvaliquette
on Pro Webmasters
See other posts from Pro Webmasters
or by fvaliquette
Published on 2014-08-17T15:31:32Z
Indexed on
2014/08/18
16:45 UTC
Read the original article
Hit count: 353
Here is the design of my web site:
- The user enter
myWebsite.com/a/1
- .htaccess rules redirect to
myWebsite.com/b
- Now the JavaScript ExtJS library is loading.
- Extracting the value from the URL (in this case it is “1”)
- Loading
./xml/1.xml
- From
1.xml
setting the Open Graph data (Title, type, image, etc) - Loading data that will be shown to the user from
1.xml
into the website.
My question is:
How can I make the Open Graph data available to Facebook? Facebook do not to load my ExtJS JavaScript Library before extracting the Open Graph Object values from the HTML. Is there an easy solution to this problem? The only solutions I found is to make statics web pages or dynamically pages rendered on the server side but I would like to avoid these since my web page implementation is already finished and I would like to avoid re working on it.
© Pro Webmasters or respective owner