I'm trying to set a rails application with a facebook canvas and openGraph objects. But the url of my OG object doesn't work in the facebook canvas.
My Object og:url looks like : https://apps.facebook.com/myapplication/ogtags/object/:id
And should redirect my users to : https://apps.facebook.com/myapplication/object/:id/action
But actually it returns me a 404 and adds some new facebook arguments at the end of the og:url :
?fb_action_ids=action_ID&fb_action_types=myapplication%3Aaction&fb_source=timeline_og
If I use the same og:url with my website url :
https://www.myapplication.com/ogtags/object/:id redirection works perfectly fine.
After checking the OG Action Debugger of facebook it says : The 'og:title' property should be explicitly provided && Some warning about my og:image size, but strictly nothing about the og:url...
I would like to keep my users into the canvas when facebook generates the objects but I'm not finding any way to make my url work with the canvas.
Any explanations would be appreciated!