I have written a simple facebook application using PHP SDK. Application works well but application name (main title which is tagged this on this image : http://xmages.net/storage/10/1/0/e/2/upload/fd7d8c6f.jpg ) looks as “php-sdk”. How can I change it ?
I have written a simple facebook application using PHP SDK. Application works well but
Share
It looks as though the image you’re showing is when you try to share a link to your application, correct? That title and other info is set in the headers under specific Facebook metadata.
Check out their documentation on the meta tags at http://developers.facebook.com/docs/opengraph/
The specific tag for the title is
<meta property="og:title" content="[your title here]"/>, this will be found in the HTML<head>area of your application.