What I need is SOOOO simple, but I cannot figure it out! Everytime I do something and go to the My Apps page, then click on the "sample code" link, then click on the link to test my application, I get the HTTP Error 200 and no data error. I can't get anyone from Facebook Developers to help me - they even deleted my post for help!!
This is all I want: When you go to someone's Wall and look under their profile picture, you see navigation links with little 16x16px icons to the left of them. Well, the FBML box that allows you to add more links to that list doesn't let you change the icon and it's super ugly. If you were to add 5 links then there are FIVE of those ugly icons. BUT, if you create an app yourself, you can create your own icon to display. That's ALL I want the app for! The rest of it (the page) would be coded in HTML right in the index.php file - static. I'll code it once and it'll probably never - or rarely - change.
Below is the code I have that's giving me the 200 and no data error. I'd appreciate any help!! :-)
<?php
require_once 'facebook.php';
$facebook = new Facebook(array(
'appId' => 'xxx',
'secret' => 'xxx',
'cookie' => true,
));
try {
$me = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
}
if ($facebook->getSession()) {
echo '<a href="' . $facebook->getLogoutUrl() . '">Logout</a>';
} else {
echo '<a href="' . $facebook->getLoginUrl() . '">Login</a>';
}
$html = '<font face="arial" size="5"><b>ADDRESS</b></font><br>2600 Arbor Avenue';
print $html;
?>