I have developed a website which is a single PHP page that receives an event ID parameter via GET like this:
mywebsite.com/?e=10 (meaning I want to visit the event whose event ID is 10)
I was integrating my website with Facebook Open Graph API so that people could post the action "vote on" on their Timeline.
I managed to do that when I was testing the integration with the event ID = 2 (http://mywebsite.com/?e=2).
My meta tags code was like this:
<!-- Open Graph meta tags -->
<meta property="fb:app_id" content="my-app-id" />
<meta property="og:site_name" content="my-site-name"/>
<meta property="og:url" content="http://mywebsite.com/?e=2" />
<meta property="og:type" content="my_namespace:event" />
<meta property="og:title" content="event-name" />
<meta property="og:image" content="http://mywebsite.com/images/bg.jpg" />
<meta property="og:description" content="the-description" /
And the JS that posts the action was like this:
<script type="text/javascript">
function postVote()
{
FB.api(
'/me/my_namespace:vote_on' + '?event=http://mywebsite.com/?e=2','post',
function(response) {
if (!response || response.error) {
alert('Error occured: ' + response.error.message);
}
else {
alert('Vote was successful! Action ID: ' + response.id);
}
});
}
</script>
It worked just fine and Facebook approved my action submission.
The event 2 was a test and now I'm generating the URLs for the new events (the next will be event ID 11). But when I reload the page replacing the ID 2 for ID 11 (and additionally all the other respective information on the meta tags), it is still posting event ID 2 to the users Timelines.
When I post the URL to the Facebook Debugger, it seems to be right:
Response Code: 206
Fetched URL: mywebsite.com/?e=11
Canonical URL: mywebsite.com/?e=11
My question is: Can I send the event ID parameter like this? What is the correct way to do that?
Thanks in advance!