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?