Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to get my photos on my facebook profile. I am going to create a new album and would like to link to that particular album and echo each individual photo within.

All the examples i have found require an app id etc and are for fb pages. I want to do this from my profile instead.

Any ideas/guidance would be a great help.

this is the closest i have come to getting it working but cant seem to link to one of my galleries.

   <h2></h2>
    <nav id='thumbs'></nav>
    <img id='viewer'>

    <script src="http://code.jquery.com/jquery-1.6.4.min.js" type="text/javascript"></script>  
    <script type="text/javascript">
      (function (gallery_id) {
        var title = $('h2'),
            viewer = $('#viewer'),
            thumbs = $('#thumbs');

        // album info
        $.getJSON('//graph.facebook.com/' + gallery_id + '?callback=?', function(json, status, xhr) {
          title.html('<a href="' + json.link + '">' + json.name + '</a> from ' + json.from.name);
        });

        // images
        $.getJSON('//graph.facebook.com/' + gallery_id + '/photos?callback=?', function(json, status, xhr) {
          var imgs = json.data;

          viewer.attr('src', imgs[0].images[0].source)

          for (var i = 0, l = imgs.length - 1; i < l; i++) {
            $('<img src="' + imgs[i].images[3].source + '" data-fullsize="' + imgs[i].images[0].source + '">').appendTo(thumbs);
          }

          $('img', thumbs).bind('click', function(e) {
            e.preventDefault();
            viewer.attr('src', $(this).attr('data-fullsize'));
          });
        });
      })('426067170422'); // let's go -- put the gallery ID here
    </script>
share|improve this question
You require an app id for any authenticated call. – phwd Jul 6 '12 at 11:25
even when connecting to my profile? though app ids came with fb apps? – Codded Jul 6 '12 at 11:30
Yes, code cannot access your profile information unless you give it a way to do so. You need an app to achieve access. There are only a few calls that work without an app id see developers.facebook.com/docs/reference/api/user – phwd Jul 6 '12 at 11:31
yes i have had a look at this before, so how do i do it with an app id? Do i have to create an app just so i can echo my pics. – Codded Jul 6 '12 at 11:34
1  
Yes, you need to create an app and authenticate as that app. Otherwise, you'd need to gain an access token on your personal profile and hard code that access token into your code, which is not the best idea when using jQuery. – cpilko Jul 6 '12 at 14:08
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.