[Solved] adding a facebook Like IMAGE to site (but keeping with FB TOS/Platform Policy) [closed]

So you want a Share button rather than a like button? Keeping in mind that this has been deprecated in favor of the like button, just create your share URL and link to it http://www.facebook.com/sharer.php?u=<url to share>&t=<title of content> 5 solved adding a facebook Like IMAGE to site (but keeping with FB TOS/Platform Policy) [closed]

[Solved] Posting links to Facebook [closed]

Follow THIS guide Basically, it’s all about custom metatags to let Facebook to parse your content description and “image” <meta name=”description” content=”This is the description of my webpage that I really want to have shared on Facebook!” /> <link rel=”image_src” href=”https://stackoverflow.com/questions/6788883/link the post image” /> 1 solved Posting links to Facebook [closed]

[Solved] How to get list of all my facebook friends using facebook api?

This is intentional, since v2.0 you can only get the friends who authorized your App too, for privacy reasons. An App should not be able to get data of friends who don´t use the App. See the changelog for more information: https://developers.facebook.com/docs/apps/changelog Also, see this thread (and countless others) about the same topic: Facebook Graph … Read more

[Solved] How to get a Facebook user’s profile picture in php

To show image in page <img src=”https://graph.facebook.com/{{fid}}/picture”> To save $image = file_get_contents(‘https://graph.facebook.com/’.$fid.’/picture?type=large’); $dir = dirname(__file__).’/avatar/’.$fid.’.jpg’; file_put_contents($dir, $image); Facebook Graph API http://graph.facebook.com/abdulla.nilam/picture 1 solved How to get a Facebook user’s profile picture in php

[Solved] Facebook app that automatically writes on fans wall, when some fan have birthday? [closed]

Luckily, this is not possible, as it would be pure spam. You would need to authorize every single User with the App, request the publish_actions and user_birthday permissions and store an Extended User Token (that is valid for 60 days). You will never get publish_actions approved by Facebook in their review process, because it´s not … Read more

[Solved] Follow Button issue [closed]

The “follow” button is meant to be used for personal accounts, e.g. to follow status updates of a user on Facebook. What I think you are looking for is the “Like” button, which is meant to allow people to show their interest in a page, which is what your site on Facebook is. An example … Read more

[Solved] Get Simple Facebook Profile Data Via PHP SDK [closed]

-Download SDK from developers.facebook.com and upload the folder “Facebook” on your web space; -Create a Facebook application; -Put this code in the same folder of “Facebook”: <?php session_start(); require_once(‘Facebook/Entities/AccessToken.php’); require_once( ‘Facebook/FacebookSession.php’ ); require_once( ‘Facebook/FacebookRedirectLoginHelper.php’ ); require_once(‘Facebook/HttpClients/FacebookHttpable.php’); require_once(‘Facebook/HttpClients/FacebookCurl.php’); require_once(‘Facebook/HttpClients/FacebookCurlHttpClient.php’); require_once( ‘Facebook/FacebookRequest.php’ ); require_once( ‘Facebook/FacebookResponse.php’ ); require_once( ‘Facebook/FacebookSDKException.php’ ); require_once( ‘Facebook/FacebookRequestException.php’ ); require_once( ‘Facebook/FacebookAuthorizationException.php’ ); require_once( ‘Facebook/GraphObject.php’ … Read more