My web site allow to users manage apps on their pages. I already implemented request to change tab name :
Uri url = new Uri(string.Format("https://graph.facebook.com/{1}", pageId,tabId));
Dictionary<string, string> args = new Dictionary<string, string>();
args["custom_name"] = tabName;
args["access_token"] = accessToken;
MakeRequest(url, HttpVerb.POST, args);
…
I have requests to add application to page and delete.
I can’t find how to Show/Hide tab on page. Can somebody help?
Yes – you can do this via POST and DELETE requests to
/PAGE_ID/tabs– you’ll need themanage_pagespermission for these calls, which are documented at https://developers.facebook.com/docs/reference/api/page/#tabs