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.

We have a new project, building a fully featured facebook App on an embedded device (using Java) as a part of a new home automation system.

All is going well however we have hit a road block when it comes to adding friends. Our interface is a complete wrapper over the facebook UI (i.e. no browser). The only way I know how to add a friend is by sending a request to http://www.facebook.com/addfriend.php?id=XXXX

From here, the user is prompted to add a friend. The question is how should be go about wrapping up this request (i.e. mirroring it) so the user needs to click accept or deny and then forward this request off to Facebook?

AFAIK there is no API for adding friends... How can we go about mimicking this form and sending the request without having to implement a full browser? Space is also an issue so some clunky framework to try an emulate a browser window popup isnt going to work for us.

Any ideas and tips would be greatly appreciated.

Cheers!

share|improve this question

1 Answer

up vote 1 down vote accepted

You won't be able to fake such a request without breaking Facebook's CSRF protections, and if you did that the loophole would likely be closed almost immediately. If your app has an embedded browser there's a Friends dialog you can use to send friend requests, and accept existing friend requests, but it won't be trivial to simulate user logins and interactions with the dialog for security reasons

share|improve this answer
This is what we were thinking in the worst case. Guess leaving this feature out isnt a deal breaker. Could you give me any more info on the Friends Dialog (i.e guessing this would be a popup based on the url in my question)? – NightWolf Dec 6 '11 at 14:30
The docs are here: developers.facebook.com/docs/reference/dialogs/friends - if you 'send' a request from user A to user B, where user B has already sent user A a friend request, the dialog serves as an 'accept request' dialog rather than a 'send request' dialog – Igy Dec 7 '11 at 10:23

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.