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 have created a facebook application for addding page tab in any facebook page.

Everything is working fine but i am not able to change the icon the tab i am adding.

I am using following code of php sdk

if($facebook->api($tabid, 'POST', array(
'custom_name' => $tabtitle,
'image_url'=>$newname,
'is_non_connection_landing_tab'=>1,
'access_token'=>$mpagetoken
))

Please tell me where i am wrong in this ?

share|improve this question

1 Answer

There is no such field as image_url in page tabs.

Actually tab icon is the application icon which is icon_url field of application object, and while some of fields may be edited by issuing POST request to https://graph.facebook.com/APP_ID?PROPERTY_1=PROPERTY_VALUE this field isn't marked as editable:

Not all app properties can be edited via the API, please refer to the properties in the table above for an indication of whether a property can be edited or not.

share|improve this answer
+1, there is no way to specify a per-install tab image – Igy Feb 9 '12 at 15:22

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.