I make a voting system through facebook, the results are calculated as the number of shares they click "yes" and "no."
After click "yes", the user sends the link to the wall (the same url in "og:url")
http://www.obeschania.ru/documents/promises/istrebitel-seria-export-t-50?vote=yes
After click "No", the user sends the link to the wall (the same url in "og:url")
http://www.obeschania.ru/documents/promises/istrebitel-seria-export-t-50?vote=no
After that, I get results with get-request:
http://graph.facebook.com/?ids=http://www.obeschania.ru/documents/promises/istrebitel-seria-export-t-50?vote=yes
AND
http://graph.facebook.com/?ids=http://www.obeschania.ru/documents/promises/istrebitel-seria-export-t-50?vote=no
In results no parameter "shares". But in results for page:
http://graph.facebook.com/?ids=http://www.obeschania.ru/documents/promises/istrebitel-seria-export-t-50
parameter "shares" exists (he equal sum "shares" for ?vote=yes and ?vote=no).
ps: sorry for my english.
?vote=yes|nopart at the end, it does not maybe get truncated by FB there already? To avoid problems with GET parameters, you could also eliminate them – using URLs…/istrebitel-seria-export-t-50/voted-yesand…/istrebitel-seria-export-t-50/voted-norespectively. Since there are no GET parameters in these, Facebook should handle them correctly and see them as different URLs. And on your server side, you can use mod_rewrite to still have them point to the same document. – CBroe Oct 11 '12 at 10:41