I am using Koala gem to get taggable_friends of logged in users of my app.
When using the taggable_friends via the Facebook API explorer i get picture urls of this type:
which work fine.
However, when calling the taggable_friends function via code (Rails version 4 with Koala gem) for the same user and the same Facebook app, I am getting the exact same ids and name data, but for the profile pics I am getting this type of URL back:
These picture URLs mostly fail with a 403. Strangely, about 5% of the profile pictures returned do work, but 95% return the 403.
BTW I have tried both with and without the app secret security enabled for my app but I still get back these unreachable URLs.
Any help is appreciated
Ok. Finally figured it out. Our javascript function was changing picture url to downcase and thus links didn't work. FB picture URLs ARE case sensitive as it turns out.