I am trying to add a tab to a page, facebooks graph api states a request with the following params should be made:
/PAGE_ID/tabs?app_id=MY_APP_ID&method=post&access_token=PAGE_ACCESS_TOKEN
When i use it with FB.api:
FB.api("/PAGE_ID/tabs?app_id=MY_APP_ID&method=post&access_token=PAGE_ACCESS_TOKEN", function(response) {
});
Response is just a list of tabs on the page, yet when i go to the brwoser and enter the same thing:
https://graph.facebook.com/PAGE_ID/tabs?app_id=MY_APP_ID&method=post&access_token=PAGE_ACCESS_TOKEN
Same request only manually it returns true and adds a tab.
NOTE: I have page access token and a page id as instructed here, sub section "Create".