The approach I've been using initially was:
http_head('http://www.facebook.com/pages/Test/' . $input['fb_page_id'] . '?sk=app_' . $input['fb_id']), 'HTTP/1.1 301 Moved Permanently')
The problem with this approach is:
- If the page doesn't exist at all, Facebook will return
200header, rather than404(eg.http://www.facebook.com/pages/Test/DominosPizza?sk=app_311706258843058). - If page has a username, this request will return response
301response.
I am building a script that occasionally goes through all instances of <div data-page="130414917005937" data-app="299770086775725"></div> in my portfolio. Then checks if the app is still on the page. If the app is on the page, it will provide a link, otherwise leave the tag as it was.
I am looking for a solution that does not require access token.