Is it possible to update an existing event with restfb?
I tried to do it like this:
facebookClient.publish("events", FacebookType.class,
Parameter.with("id", "273309122838095"),
Parameter.with("name", "updated event name"));
but this does not work. I'm getting this error:
Received Facebook error response of type OAuthException: (#100) Specifying multiple ids with a post method is not supported (code 100, subcode null)
Anyone knows if it can be done and how?