Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Spring Social Facebook (Java) to call Graph API methods for friend lists, using an app-specific access_token that contains all available permissions.

I can create a list and add members to it. But when I want to remove a member, DELETE https://graph.facebook.com/{LIST_ID}/members/{USER_ID}?access_token={ACCESS_TOKEN} ...the call fails with a 400 error.

I tried calling the same 'delete' URL from my own java client code (Jersey) and got the same 400 error: 400 Bad Request Method Not Implemented Invalid method in request

But the same 'delete' URL works no problem if I use it: - in the Graph API debug tool - in the "RESTClient" Firefox extension

Any ideas why the java code is having trouble with this delete call?

share|improve this question
any luck with this? i just hit the same issue – Peter Watts Apr 12 '12 at 7:29

1 Answer

I ended up using a batch request (even for a single call) and it worked fine. Probably a bug.

https://developers.facebook.com/docs/reference/api/batch/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.