Thursday 4 February 2016

How to change Facebook profile picture


facebook.jpg
If you would like to change your facebook profile picture with php or jquery. You can use below code for the same.
Please download facebook.js from Facebook SDK.
  1. <script src="//code.jquery.com/jquery-latest.min.js"></script>
  2. <script src="//connect.facebook.net/en_US/all.js"></script>
  3. <script src="<?= BASE_URL ?>/js/facebook.js"></script>

  4. // Additional JS functions here
  5.   window.fbAsyncInit = function () {
  6.       FB.init({
  7.           appId: fbAppId, // App ID
  8.           status: true, // check login status
  9.           cookie: true, // enable cookies to allow the
  10.           // server to access the session
  11.           xfbml: true, // parse page for xfbml or html5
  12.           // social plugins like login button below
  13.           version: 'v2.0', // Specify an API version                  
  14.       });

  15.       // Put additional init code here

View full Blog about How to change Facebook profile picture at FindNerd.

No comments:

Post a Comment