does anybody know how i can set a link with App Namespace in a post Message instead of the URL. Okay i try to explain: Everyone know that you can Link Users or Apps on Facebook Post with @User or @APP_Name and then you got a direkt Link to the User with the Username instead of the URL / the APP Name Instead of the URL to the APP. But how i can do it with an app?
My personal Facebook App adds photos to the wall of users with a description and a link:
'message'=> 'This is my App - Try this app Now: https://www.facebook.com/apps/application.php?id=123'
Now i search i way to linking my App with the App Namespace instead of URL
'message'=> 'This is my App - Try this app Now: MY_APP_NAMCESPACE'
How i get this? Can you help me? Big THX!
Sorry, i try to explain. My App is Uploading a Photo to Users Post Wall > its posting a photo and no link. And i want a direkt link with app namepsace in the description-message of the photo to my Uploading app instead of just posting a URL.
$album_details = array(
'message'=> 'This is my App',
'name'=> 'App Album'
);
$create_album = $facebook->api('/me/albums', 'post', $album_details);
//ID d
$album_uid = $create_album['id'];
//Upload
$photo_details = array(
'message'=> 'This is my App - Try this app Now: https://www.facebook.com/apps/application.php?id=123'
);
$file = "temp/".$userInfo['id'].".jpg";
$photo_details['image'] = '@' . realpath($file);
$upload_photo = $facebook->api('/'.$album_uid.'/photos', 'post', $photo_details);
In the meesage Part of $photo_details i need this:
'message'=> 'This is my App - Try this app Now: MY_APP_NAMCESPACE_LINK'
instead of this:
'message'=> 'This is my App - Try this app Now: https://www.facebook.com/apps/application.php?id=123'
Now i search i way to linking my App with the App Namespace instead of URL
I take a screenshot http://s1.directupload.net/images/120814/ime2r5uj.jpg
Thanks!