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.

Under the "picture" connection on the User docs, it says the following:

October 2012 Breaking Changes" migration setting is enabled for your app, this field will be an object with the url and is_silhouette fields; is_silhouette is true if the user has not uploaded a profile picture

Now - I am not sure if the option is available or not, but I am seeing a difference in result when I use my app or the API Dashboard app when asking for /me/picture...

When I use the Graph API App ID in the Graph API Explorer, the result I am getting looks like this:

{
  "data": 
{
    "url": 
"https://fbcdn-profile-a.akamaihd.net/hprofile-ak-prn1/161183_651673319_6614657_n.jpg", 
    "is_silhouette": 
false
  }
}

However, when I use my app, I am seeing this (for the same OpenGraph query):

"https://fbcdn-profile-a.akamaihd.net/hprofile-ak-prn1/161183_651673319_6614657_n.jpg"

So the question is, how do I get my app to return the same result and where on my app's dashboard can I find these migration switches I can play with?

share|improve this question
1  
They're in the advanced settings page – Igy Sep 30 '12 at 2:05
Ha! Found them. Thanks for the info - dunno how I missed them at first. If you add this as an answer, I will mark it as such. – Shahar Prish Sep 30 '12 at 8:40
Why all the downvotes? Anyone has any idea? – Shahar Prish Oct 3 '12 at 8:51

closed as off topic by Igy, Toon Krijthe, FelipeAls, Pent Ploompuu, ronalchn Sep 30 '12 at 11:32

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

Use Facebook.getRawResult(paste here your result from query) and its magically returns you all DATA object.

share|improve this answer
This isn't an answer to the OPs question – Igy Sep 30 '12 at 6:44

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