Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a website where facebook users can post messages that will be published on their timeline as an action-object with custom properties. I have mannaged to get through the og publishing and the action-object is posted successfuly. however when other user 'likes' the object or sharing it (by copy paste the link from the website to facebook) it is being published as link: user1 likes a link instead of user1 likes an object. All the og meta tags are placed correctly and checked with facebook debugger. is it possible for facebook to display the page as an object (with the custom properties) when a user likes or shares it?

share|improve this question

1 Answer

is it possible for facebook to display the page as an object (with the custom properties) when a user likes or shares it?

To the normal like/share mechanism, the URL of your object is just that – a normal URL. They have no idea, that inside your app these may be defined as “objects” with a special meaning.

The only option I see to get a similar display on likes, is to use the build-in like action – and define ow the result should look for that (if possible). But this would only affect likes made through your app using that specific action – not any “normal” likes happening on facebook.com. (I don’t see any way to manipulate the appearance of the latter.)

share|improve this answer
Thanks for replying. If the url contains the meta tags needed to define the page as an object such as: <meta property="og:type" content="appNameSpace:object" /> , shouldnt facebook scraper be able to proccess it as an object and display it as such? I have the same problem when a user preform multiple actions. the "story" come out well: user1 {action} three {objects} using {website}. but beneeth I get a list of the objects (in the newsfeed of other user, not in the timeline) diplayed as url's boxes instead of the objects with their properties. can you tell why is this happening? – user1694015 Sep 24 '12 at 14:11
Have you put your URLs through the debug tool yet? developers.facebook.com/tools/debug – CBroe Sep 24 '12 at 14:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.