views:

42

answers:

0

Now that Facebook has finally began rolling out the ability for 3rd Party developers to set privacy permissions on objects via Facebook Apps and Facebook Connect I would like to begin implementing these permissions to my Facebook App.

http://wiki.developers.facebook.com/index.php/Privacy_(FQL) http://wiki.developers.facebook.com/index.php/Privacy.get http://wiki.developers.facebook.com/index.php/Stream.publish

Is there a way to get a list of a user's "Networks"? I want to give my users the highest possible control of their streams and the content they post to Facebook via my app.

per the Stream.publish you may set a 'Privacy' object and one of the params is:

networks (string): For CUSTOM settings, specify a comma-separated list of network IDs that can see the object, or 1 for all of a user's networks.

I need to be able to get the list of network IDs.

Part2: Is this API going to be extended to user.setStatus?

I am currently using PHP5 and the Official Facebook PHP5 Client Library.

I am not picky as the method of getting this list of Networks. FQL or other request methods are perfectly fine.