I have Cloud Power

Amazon Web Services AWS is an IaaS platform and provides maximum freedom for developers in choice of the OS, middleware and development environment. Google App Engine + Google Apps Google App Engine is used as SaaS, it provides free limited resources (disk space and bandwidth), GAE supports programming languages – PHP, Python and Java. Facebook … Read more

Amazon S3 & Facebook Fanpage app

I want to link Amazon S3 https object like “https://s3.amazonaws.com/bucket/index.html” to facebook iframed fan page… But it returned error…. 405 Method Not Allowed Code: MethodNotAllowed Message: The specified method is not allowed against this resource. ResourceType: OBJECT Method: POST RequestId: XXXXXXXXXXXXX HostId: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX OR PreconditionFailedAt least one of the pre-conditions you specified did not holdBucket … Read more

How to check Facebook Application is Alive or Dead?

<?php include(“facebook.php”); $APPLICATION_ID = “”; $APPLICATION_SECRET = “”; $facebook = new Facebook(array( ‘appId’ => $APPLICATION_ID, ‘secret’ => $APPLICATION_SECRET, ‘cookie’ => true )); $fql = “SELECT api_key FROM application WHERE app_id=” . $APPLICATION_ID; $param = array(  ‘method’ => ‘fql.query’,  ‘query’ => $fql,  ‘callback’ => ” ); $fqlResult = $facebook->api($param); if(isset($fqlResult[0][‘api_key’]) && $fqlResult[0][‘api_key’]!=””)   echo “This app is … Read more