When sharing one of my pages on FB, I want to display something different. Problem is, I prefer not to use the og: elements, but to recognize FB user-agent.
What is it? I can't find it.
Thanks
|
When sharing one of my pages on FB, I want to display something different. Problem is, I prefer not to use the og: elements, but to recognize FB user-agent. What is it? I can't find it. Thanks |
|||
|
|
Facebook's user-agent string is
|
||||
|
|
Hi Small, yet important, correction -> Facebook external hit uses 2 different user agents:
Setting you fitler to 1.1 only may cause filtering issues with 1.0 version. For more information about Facebook Bot (and other bots) please refer to Botopedia.org - a Comunity-Sourced bot directory, powered by Incapsula. Besides user-agent data, the directory also offers an IP verification option, allowing you to cross-verify an IP/User-Agent, thus helping to prevent impersonation attempts. |
||||
|
|
|
Here are the Facebook crawlers User Agent:
or
Note that the version numbers might change. So use a regular expression to find the crawler name and then display your content. Update: You can use this code in PHP to check for Facebook User Agent
Here is ASP.NET code. You can use this function to check if the userAgent is Facebook's useragent.
Note: Why would you need to do that? When you share a link to your site on Facebook, facebook crawls it and parses it to get some data to display the thumbnail, title and some content from your page, but it would link back to your site. Also, I think this would lead to cloaking of the site, i.e. displaying different data to user and the crawlers. Cloaking is not considered a good practice and may search engines and site take note of it. |
|||||||
|
|
Short solution is to check pattern, and not to load each time all the mess to user
|
|||
|
|