I'm building a little app for math exercises. I've an URL (leads to index.php) for the canvas view. When I select a topic in this canvas view, it calls another URL (domain.com/exercise/id) that is loaded in the canvas view.
All my id's are tagged with open graph meta-informations for OG aggregation.
So far so good. But the URL of my 'items' is on my domain - the domain that will be shown in the iframe in canvas view.
I post an activity like this:
FB.api('/me/mymathapp:solve' +
'?exercise_serie=' + exeSerieUrl + '?access=' + accessToken,'post',
function(response) {});
But now the link to my exercise in the activity feed on my wall leads to my website and not to the canvas-page of my app. Altought I only setup my canvas URLs - nothing else.
Are there any settings, that those URLs should only show up in canvas view? Or do I've to do a workaround like redirect to the canvas view form my page?
Thanks in advance, Jurik