Is there any method to have the action links that appear in the activity feed to redirect to the app within the canvas and not to the external site?
For OG tags we need to specific the url as it would be externally.
If we use the actions code:
$uri = 'mysite/videos/video/'.$vid_cr.'/'.$vid_id;
$args = array();
$args['other'] = 'https://'.$_SERVER['SERVER_NAME'].'/'.$uri;
$fbClient->api('my_app:view', $args);
Is it possible to use
apps.facebook.com/cavnasappname in $args?