2

I'm trying to use the /links methods from the Graph API and can't seem to get it to use the names, captions, pictures, or descriptions I'm passing. Are these arguments deprecated or something?

Here's my sample call:

curl -F 'access_token=<my_token>' \
     -F 'link=http://spectate.com' \
     -F 'message=Spct8?' \
     -F 'picture=http://spectate.com/wp-content/uploads/2011/05/spec_rgb.png' \
     -F 'name=Spectate' \
     -F 'caption=a' \
     -F 'description=my desc' 
     https://graph.facebook.com/<wall_id>/links

The link and message appear fine but it doesn't use the picture, caption, name or description.

Any ideas?

Bradley
  • 1,644
  • 3
  • 15
  • 24

1 Answers1

0

This has been asked and resolved as a Facebook API bug. The workaround is to post to /feed as noted in the bug. The caveat is that the link is unshareable.

Community
  • 1
  • 1
Bradley
  • 1,644
  • 3
  • 15
  • 24