Where should I specify what Facebook permissions to request in iOS app with the new enhanced auth dialog? -


before new enhanced auth dialog, way ask permissions in ios app:

nsarray *permissions = [[nsarray alloc] initwithobjects:         @"user_likes",          @"read_stream",         nil]; [facebook authorize:permissions]; [permissions release]; 

what should if switch enhanced dialog? should choose permissions ask in facebook "edit app" page , pass "nil" instead of array?

[facebook authorize:nil]; 

i tried specifying permissions in "edit app" page app's authentication dialog seems ignore them. still seems mention ones specified in code, inside "permissions" array.

is there way have app use permissions specified in "app edit" page instead of having write them in code?

do same way before; settings you're thinking of in developer app authenticated referrals (which causes links on facebook canvas app pop auth dialog when clicked instead of going app , having redirect auth dialog yourself)


Comments

Popular posts from this blog

jasper reports - Fixed header in Excel using JasperReports -

media player - Android: mediaplayer went away with unhandled events -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -