Publishing to Facebook using low level API
Hi,
we wanna post a link to Facebook ("xyz commented to item...") and therefor would like to integrate a picture within our post. We figured out you have to use GraphAPI directly in order to do so but unfortunately we can not get the necessary information regarding params from the Java docs as these are pretty limited...
So basically setting up the map ist pretty straight forward:
MultiValueMap<String, Object> map = new LinkedMultiValueMap<String, Object>();
map.add("link", "http://www.google.com/");
map.add("message", "Low Level API message");
map.add("name", "Link name...");
map.add("picture","http://www.rafting_em_brotas.jpg");
But what do we need to pass in as params to the publish method (p1 & p2)?
connection.getApi().publish("p1", "p2", map);
Thanx in advance, Florian...