Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
Dude, there’s lots of questions already that discuss this topic – facebook.stackoverflow.com/search?q=tagging+post+%40username Once again: It is currently not possible to tag people that way when making posts using the API – it only works if the user does it himself on Facebook.com – CBroe Aug 14 '12 at 8:38
It must be possible to Tag Apps see Screenshot s1.directupload.net/images/120814/ime2r5uj.jpg Thanks for your help! – Adam Smith Aug 14 '12 at 11:50
That is not a “tag”. Looks more like a custom action link. – CBroe Aug 14 '12 at 11:53
When i mouse over it comes the information about the App like the preview of a page. Tagging Apps like this @[{userid}:1:{username}] ? – Adam Smith Aug 14 '12 at 14:15

1 Answer

Your question is difficult to read but it sounds like you want to create a feed story with a link embedded in the 'message' part of the post - This is not possible. Put the URL you want to link to in the 'link' part of the URL if you want to post a link

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.