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 was wondering if it is possible to change your site url or canvas url using the graph api. I have admin rights to my application and I can change it via the gui but I would prefer to be changing it via a curl. Thanks

share|improve this question

2 Answers

up vote 2 down vote accepted

Here is example:

$properties = array(
    "callback_url" => '',
    "installable" => 1,
    "profile_tab_url" => "",
    "tab_default_name" => "",
    'tos_url' => '',
    'privacy_url' => ''
);

$facebook = new Facebook(array('appId'=>'YOUR_APP_ID','secret' = > '..', ...));

$facebook->api(array(
    'method'=>'admin_setAppProperties', 
    'properties'=>json_encode($properties))
);

Here is a list of the properties you can set: http://developers.facebook.com/docs/appproperties/

There is also admin.getAppProperties more info you can find here: http://developers.facebook.com/docs/reference/rest/admin.getAppProperties/

Using Facebook SDK

share|improve this answer
1  
Just to note that a graph API equivalent of this should be ready shortly, it'll be announced on the blog when this happens – Igy Sep 27 '11 at 9:16
so I tried this and I keep getting this error: Exception: 15: This method must be called with an app access_token. I then tried to get the access_token from the $_SESSION but that was failing too any suggestions? – gdoubleod Oct 8 '11 at 21:48
app access token is simple your_app_id|your_secret_app_id so basicly you get a 2 numbers separated by | . You sould also check you application settings in the advanced options for "encrypted access token" – sensor Oct 10 '11 at 12:01
$app_settings = $facebook->api( array( 'method'=>'admin_getAppProperties', 'properties'=>json_encode($properties), 'access_token'=>$_SESSION['fb_APPID_access_token']) ); Shouldn't this work? – gdoubleod Oct 12 '11 at 22:18
anyone know if the graph api is available yet? – gdoubleod Jan 22 '12 at 18:51

You need to use the old REST method admin.SetAppProperties https://developers.facebook.com/docs/reference/rest/admin.setAppProperties/

At the moment FB has not yet moved that method yet to the OpenGraph but you can still call REST methods via the Graph API (As shown in the console in the page above).

Even then you cannot change the secure_canvas and secure_tab url setting. FB is apparently working on make those settings as part of the API as far as I heard.

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.