Reputation: 195
I am using the facebook og meta tags for a like button . I read on developers.facebook.com that the og:title tag will not update after 50 likes are registered. My question is if my site's url (in og:url) is http://abc.com/somthing.do?param1¶m2... etc etc, and these params take different values, but come to the same page something.do? - will it be still considered as one page or will they be considered as 2 different urls ?
so for example 1. http://abc.com/somthing.do?param1¶m2 2. http://abc.com/somthing.do?param3¶m4
Will 1 & 2 be treated as likes coming from the same page or different pages ?
Help appreciated.
Upvotes: 0
Views: 476
Reputation: 7847
It depends on the canonical url, aka. the og:url
tag.
If a url has a different url in og:url
, Facebook will go fetch the data again from the og:url
url. So if a.co?param1¶m2
has og:url a.co
then facebook will go to a.co
to get the og tags, otherwise it won't.
You can test these things in the debugger;
Upvotes: 2