2
如何在Facebook iOS SDK中啓用無摩擦的請求?我看到Ole Begemann's post它現在「正常工作」,但我每次都會收到請求對話框。iOS上的無摩擦請求 - 如何?
如何在Facebook iOS SDK中啓用無摩擦的請求?我看到Ole Begemann's post它現在「正常工作」,但我每次都會收到請求對話框。iOS上的無摩擦請求 - 如何?
通過將apprequests對話框的「無摩擦」參數設置爲「1」,可以啓用無摩擦請求。例如;
// create a dictionary for our dialog's parameters
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithCapacity: 7];
// set the frictionless requests parameter to "1"
[params setObject: @"1" forKey:@"frictionless"];
// ... add other parameters ...
// show the request dialog
[facebook dialog:@"apprequests" andParams:params andDelegate: nil];
這的確是這麼簡單。非常感謝,大衛! –