Exceptions with Facebook Apps

OAuthException: Error validating access token: Session has expired at unix time 1311357600. The current unix time is 1311357734 Request FB Access Token each & every time… Rotate Apps… OAuthException: (#1) An unknown error occurred Sometime facebook block App’s domain and text, images, links etc. used on apps, You can use URL Linter to cross check … Read more

Slim function in php

Slim is a simple powerful PHP 5 framework to create RESTful web applications. The Slim micro framework is a template language whose goal is reduce the syntax to the essential parts without becoming cryptic. <?php require ‘Slim/Slim.php’; Slim::init(); Slim::get(‘/hello/:name’, function ($name) { echo “Hello $name”; }); Slim::run(); ?> How to install Slim