2011-01-12 10 views
6

यह एक बहुत ही मूर्ख सवाल है। मैं फेसबुक जावास्क्रिप्ट एसडीके के साथ एक शुरुआत कर रहा हूँ। तो मैं दिखाने के लिए एक उपयोगकर्ता के प्रोफ़ाइल छवि बनाने के लिए कोशिश कर रहा हूँ मैं इस कोडप्रोफ़ाइल छवि प्राप्त करने के लिए FB.api ('/ me/picture') का उपयोग कैसे करें

FB.api('/me', function(response) {  
    document.getElementById('login').style.display = "block"; 
    document.getElementById('login').innerHTML = '<img src="http://graph.facebook.com/' + response.id + '/picture" />'; 
}); 

जो ठीक काम किया करते थे, लेकिन मुझे यह समझाया गया FB.api('/me/picture') उपयोग करने के लिए कैसे छवि दिखाने के लिए कोशिश कर रहा हूँ।

उत्तर

0

FB.api('/me/picture') चित्र URL के लिए एक redirect वापस आ जाएगी, तो यह आप के लिए किसी काम का नहीं हो जाएगा:
alt text
जिस तरह से आप उपयोग कर रहे हैं वैध के रूप में documentation (पढ़ना अनुभाग) में उल्लिखित है। शायद this संबंधित है लेकिन मुझे नहीं पता कि यह पूरी तरह मान्य है या नहीं।

+0

यह दिलचस्प है। मुझे आश्चर्य है कि fb.api ('me/picture') के लिए क्या उपयोग है? उत्तर – user573451

+0

@ user573451 के लिए बहुत बहुत धन्यवाद: ठीक है, मुझे लगता है कि एपीआई सर्वर-साइड प्रयोजनों के लिए मौजूद है '$ facebook-> एपीआई ('/me/picture ');', कच्ची छवि (शायद?) या कुछ सहेजने की तरह ... लेकिन जहां तक ​​क्लाइंट-साइड आपकी चिंता है, मैं इसके लिए किसी भी उपयोग के बारे में नहीं सोचता और आप पहले ही सही तरीके से उपयोग कर रहे हैं। :-) – ifaour

12

/me/picture (या /{user id}/picture) एक HTTP 301 छवि स्थान पर रिडायरेक्ट कर देता है ताकि आप इसे सीधे एम्बेड कर सकते हैं एक <img src...

में आप URL को पुनः प्राप्त करने और यह अपने आप आप की जरूरत उपयोग करना चाहते हैं विशेष रूप से एक के रूप में यह अनुरोध करने के लिए क्षेत्र, के माध्यम से:

/{user id}?fields=picture 

या

/me/?fields=picture 

तुम भी अन्य क्षेत्रों को शामिल कर सकते हैं, लेकिन मुझे लगता है कि आप अभी तस्वीर चाहते हैं।

+0

'/ me/picture' एक यूआरएल (या एक ऑब्जेक्ट) देता है? आपने कहा है कि आप इसे सीधे ' LazerSharks

+1

'/me/picture' returns a HTTP 301 redirect to the image, '?fields=picture' returns the URL as a field of the JSON response – Igy

+0

interesting... wonder why they need to provide a http 301 redirect... – LazerSharks

9

साथ ही आप प्रोफ़ाइल फ़ोटो के विशिष्ट आकार प्राप्त कर सकते हैं:

FB.api("/me/picture?width=180&height=180", function(response) { 

     console.log(response.data.url); 

}); 

Facebook documentation to see what different picture sizes you can get देखें।

और पर लॉगिन के साथ एक पूर्ण डेमो: Get Facebook Profile Picture with Javascript SDK

+1

टाइप आसान है यदि आप एक सटीक आकार निर्दिष्ट नहीं करना चाहते हैं और केवल छोटे, सामान्य, बड़े जैसे अस्पष्ट मूल्य चाहते हैं: https://developers.facebook.com/tools/explorer?method=GET&path=me%3Ffields%3Dpicture.type(normal)&version= – SilentDirge

1

यह वह जगह है यकीन है कि गोली मार दी, फेसबुक ग्राफ एपीआई 2.5 के साथ काम करने वाली साबित हुई। यह नमूना HTML है कृपया FB.api() फ़ंक्शन में किए गए परिवर्तन देखें।

<!DOCTYPE html> 
    <html> 
    <head> 
    <title>Facebook Login JavaScript Example</title> 
    <meta charset="UTF-8"> 
    </head> 
    <body> 

    <!-- 
     Below we include the Login Button social plugin. This button uses 
     the JavaScript SDK to present a graphical Login button that triggers 
     the FB.login() function when clicked. 
    --> 
    <img src="" id="profileImage"/> 

    <div id="status"> 
    </div> 

    </body> 
    <script> 

     // This is called with the results from from FB.getLoginStatus(). 
     function statusChangeCallback(response) { 
      console.log('statusChangeCallback'); 
      console.log(response); 
      // The response object is returned with a status field that lets the 
      // app know the current login status of the person. 
      // Full docs on the response object can be found in the documentation 
      // for FB.getLoginStatus(). 
      if (response.status === 'connected') { 
       // Logged into your app and Facebook. 
       testAPI(); 
      } else if (response.status === 'not_authorized') { 
       // The person is logged into Facebook, but not your app. 
       document.getElementById('status').innerHTML = 'Please log ' + 
         'into this app.'; 
      } else { 
       // The person is not logged into Facebook, so we're not sure if 
       // they are logged into this app or not. 
       document.getElementById('status').innerHTML = 'Please log ' + 
         'into Facebook.'; 
      } 
     } 

     // This function is called when someone finishes with the Login 
     // Button. See the onlogin handler attached to it in the sample 
     // code below. 
     function checkLoginState() { 
      FB.getLoginStatus(function(response) { 
       statusChangeCallback(response); 
      }); 
     } 

     window.fbAsyncInit = function() { 
      FB.init({ 
       appId  : 'XXXXXXXXXXXX', 
       cookie  : true, // enable cookies to allow the server to access 
            // the session 
       xfbml  : true, // parse social plugins on this page 
       version : 'v2.5' // use graph api version 2.5 
      }); 

      // Now that we've initialized the JavaScript SDK, we call 
      //FB.getLoginStatus(). This function gets the state of the 
      // person visiting this page and can return one of three states to 
      // the callback you provide. They can be: 
      // 
      // 1. Logged into your app ('connected') 
      // 2. Logged into Facebook, but not your app ('not_authorized') 
      // 3. Not logged into Facebook and can't tell if they are logged into 
      // your app or not. 
      // 
      // These three cases are handled in the callback function. 

      FB.getLoginStatus(function(response) { 
       statusChangeCallback(response); 
      }); 

     }; 

     // Load the SDK asynchronously 
     (function(d, s, id) { 
      var js, fjs = d.getElementsByTagName(s)[0]; 
      if (d.getElementById(id)) return; 
      js = d.createElement(s); js.id = id; 
      js.src = "//connect.facebook.net/en_US/sdk.js"; 
      fjs.parentNode.insertBefore(js, fjs); 
     }(document, 'script', 'facebook-jssdk')); 

     // Here we run a very simple test of the Graph API after login is 
     // successful. See statusChangeCallback() for when this call is made. 
     function testAPI() { 
      console.log('Welcome! Fetching your information.... '); 
      FB.api('/me', function(response) { 
       console.log('Successful login for: ' + response.name); 
       console.log('Successful login for: ' + response.id); 
       console.log('Successful login for: ' + response.email); 
       var im = document.getElementById("profileImage").setAttribute("src", "http://graph.facebook.com/" + response.id + "/picture?type=normal"); 
       document.getElementById('username').innerHTML =response.name; 
      }); 
     } 

    </script> 
    </html> 
संबंधित मुद्दे