I am using following code to unlike a post from facebook using graph api
if (facebook.isSessionValid()) {
String response;
try {
response = facebook.request(objectId+"/likes", new Bundle(),"DELETE");
System.out.println(response);
if(response.equals("true")){
response_returned =true;
return response_returned;
}else{
Toast.makeText(activity,response , Toast.LENGTH_LONG).show();
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
It was working fine before but now i am getting following error :
message":"(#200) Feed story publishing to other users is disabled for this application","type":"OAuthException","code":200}}
I am using facebook old sdk and i can't switch to new one since a lot of work has been done so is there a work around to unlike comment using old sdk .
