It seems that a new dialog to go to the page -> https://developers.facebook.com/docs/reference/dialogs/add_to_page/ - calls the application URL using GET (redirect_uri? Tabs_added [nnnnn] = 1) (where nnnn - pageId of the page to which the application is added)
I canβt find the documentation on whether when the application is removed from the page, the same url will be called using GET (redirect_uri? Tabs_added [nnnnn] = 0)?
I try to handle the removal of the application from the page, if possible. (I tried to check this, but I do not get a trigger for my redirect_uri on the installed, unlike the one caused by the installation ..)
My question is: is there a way to get the delete page callback to the application (when the page removes or removes the application from the page)? From the syntax for setting a GET call (? Tabs_added [nnn] = 1, it looks like it could have been designed with the intention of calling a GET with? Tabs_removed [nnnn] = 1 or tabs_added [nnnn] = 0 when the application is removed from the page?
source share