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 pull out images from my album on facebook using Graph API and I am able to do so.

using the call - graph.facebook.com/albumID/photos

above call responds with all the data I need and it responds with URL of all the images in various sizes:

 {
      "picture": "URL Here",
      "source": "URL Here",
      "height": 540,
      "width": 720,
      "images": [
        {
          "height": 972,
          "width": 1296,
          "source": "URL Here"
        },
        {
          "height": 720,
          "width": 960,
          "source": "URL Here"
        },
        {
          "height": 540,
          "width": 720,
          "source": "URL Here"
        },
        {
          "height": 450,
          "width": 600,
          "source": "URL Here"
        },
        {
          "height": 360,
          "width": 480,
          "source": "URL Here"
        },
        {
          "height": 240,
          "width": 320,
          "source": "URL Here"
        },
        {
          "height": 135,
          "width": 180,
          "source": "URL Here"
        },
        {
          "height": 97,
          "width": 130,
          "source": "URL Here"
        },
        {
          "height": 97,
          "width": 130,
          "source": "URL Here"
        }
      ],

Is there a way using which I can get images that are there in my albums, of the size I want? Eg: 150x120 or 190x210 etc.

Thanks, Reno Jones

share|improve this question
try to improve your accept rate! – ifaour Nov 25 '12 at 9:13

1 Answer

up vote 0 down vote accepted

Is there a way using which I can get images that are there in my albums, of the size I want? Eg: 150x120 or 190x210 etc.

No, this is not possible. You have to use one of the photos supplied by Facebook.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.