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.

I'm trying to share links via /me/links, while "me" is authenticated as a facebook page. The documentation says, I can provide it with "picture", "caption" and "description", but that doesn't seem to work, since facebook tries to receive that information from the page e.g. opengraph tags etc.

Even if the site doesn't provide any info, facebook doesn't use the fields that are documentet here. And to have it mentioned: The plain link sharing function at facebook itself works crappy in the very same way (that's why I'm hoping it's a bug).

The Code is very simple:

<?php
$data = array(
  'message' => $text,
  'picture' => $pic,
  'name' => $name,
  'link' => $link,
  'caption' => $caption,
  'description' => $description
);
$result = $fb->api('/me/links','POST',$data);
?>

If I do the very same over /me/feed, facebook doesn't ignore the fields and everything looks fine, but it doesn't show the post in a users feed (since the most recent changes in september), which is worthless and it doesn't provide a share link at the bottom of the post.

Any ideas if this is a bug or intention? I'm using the PHP SDK 3.0.1.

share|improve this question

2 Answers

up vote 1 down vote accepted

This is by design.

When you post a link to /me/links, the stream story takes it's data from the OG tags in the URL supplied.

share|improve this answer
Is it also by design that when I do the same via "/me/feed" that it doesn't show up in a users stream (of course only if a user liked the page that's posting)? This wasn't the case before the recent changes in september and the reason why we we're searching for alternatives like "/me/links". – Michael Sebel Oct 7 '11 at 11:03
Thats a bug. Please follow the relevant ticket on developers.facebook.com/bugs. posting to /me/links is expressly designed for posting links, not generic news feed stories which are customizable at post-time – Simon Cross Oct 10 '11 at 19:13

here's what the HTML on the link you post should look like:

<head>
    <meta property="og:locale" content="en_US" />
    <meta property="og:site_name" content="name for ENTIRE SITE"/>
    <meta property="og:title" content="name of PAGE"/>
    <meta property="og:type" content="website"/>
    <meta property="og:image" content="<URL HERE>"/>
    <meta property="og:description" content="my description" />
    <title>Untitled</title>
</head>

@Simon - this still doesnt answer the question of where the "caption" property comes from...

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.