I'm trying to integrate my app with Facebook just for posting a message on the user's wall.
So I've downloaded the latest Facebook SDK, then changed one line to force using Facebook Login Dialog instead of safari:
[self authorizeWithFBAppAuth:YES safariAuth:NO];
Now authorization works fine, but after entering credentials it asks for permission to "Access my basic information" and "Post to my Wall" (I've added publish_stream).
I'm worried that users might get scared by the fact that my app is trying to get their info including list of friends, etc.
So my question is: Is it possible to have only "Post to my Wall" in the permission request without "Access my basic information"?