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.

Is there any way to change the Facebook album privacy settings with graph api? I'm trying to find out, but all I could found is how to get the privacy settings using fql, but not to set.

I'm creating the album as follow

$postdata = http_build_query(array(
          'name' => $album_name,
          'message' => $album_description
            )
          );

  $opts = array('http' =>
         array(
          'method'=> 'POST',
          'header'=>
            'Content-type: application/x-www-form-urlencoded',
          'content' => $postdata
          )
         ) $context  = stream_context_create($opts);
 $result = json_decode(file_get_contents($graph_url, false, $context));
         $albumid = $result->id;

Now if I add privacy=>"value", it gives $albumid=null. I'm not sure where I need to add privacy parameter.

share|improve this question

2 Answers

up vote 0 down vote accepted

The document of creating an album is put in https://developers.facebook.com/docs/reference/api/user/#albums

Privacy setting is a json-style string. So you could create an array() and use json_encode() to generate it.

share|improve this answer
Thank u Sars... – kaur Jun 15 '12 at 14:16

When you create an album, you can send these parameters in post request.

name, message, location and privacy.

Value of privacy field can be set like this,

 privacy={value: "CUSTOM"} (send this as post parameter)

The value field may specify one of the following strings:

EVERYONE, ALL_FRIENDS, NETWORKS_FRIENDS, FRIENDS_OF_FRIENDS, CUSTOM .

As facebook docs sucks, there's no mention about it on albums object page.

However, you can read it on post object.

Edit: (after comments)

In php sdk you can do something like this,

$ret_obj = $facebook->api('me/albums', 'POST',
                                           array(
                                              'privacy' => '{value: "CUSTOM"}',
                                              'location' => 'India'
                                         ));
share|improve this answer
Thank you Jashwant. But could you explain more, – kaur Jun 14 '12 at 15:04
Which sdk or method are you trying ? – Jashwant Jun 14 '12 at 18:56
I'm using php-sdk. – kaur Jun 14 '12 at 23:18

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.