The Open Graph object url you are trying to use is this?
http://www.domain.com/object/?og:type=somesandbox:car&og:title=Some%20car
My guess is, since Facebook is already parsing :
colon characters for the action names (i.e. graph.facebook.com/me/recipebox:cook?recipe=
), they might not be safe to use as your own parameters.
Also, there might be some confusion: so far as I know, Open Graph properties of objects are not passed in URLs like this og:title=Some%20car
. They are actually uncoded in the page the URL points to, via the open graph meta tags: <meta property="og:title" content="Some car" />
. So if you trying to set the Object properties with the URL, it won't work.
Don't forget to use the Lint Debug Tool to test out your Open Graph Object URLs!
You probably do know this, though, and are just using the URL's GET parameters to set the meta
tags. Something like this?
<meta property="og:title" content="<? echo $_GET['og:title'] ?>" />
If this is the case, just try it without the :
colons. There is some debate about whether they are safe in URLs anyway, but if Facebook is also parsing them it'll be safest to just leave them out, like this:
// http://www.domain.com/object/?ogtype=somesandbox:car&ogtitle=Some%20car
<meta property="og:type" content="<? echo $_GET['ogtype'] ?>" />
<meta property="og:title" content="<? echo $_GET['ogtitle'] ?>" />
I have not tested this, just giving some suggestions to try. Good luck!