I am building a Facebook app that has the ability for others to submit stories, and if they publish this story to "Everyone", then anyone, even people who aren't their friends, can see the story. I want to add the user's profile pic to the story. I know that you can access this via:
https://graph.facebook.com/<userId>/picture
However, I do not want to expose the user's userId this way. Someone could just view the source, see their userId in the src URL and then the person's privacy has just been compromised.
I want to hide the userId so that this type of privacy leakage is NOT possible.
Is there a way to do this, or is my only option to save a non-profile image for the user?