本文介绍了iOS上的无摩擦请求 - 如何?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在中启用无摩擦请求?我看到了现在的 只是工作,但是我每次都会收到请求对话框。
How do you enable frictionless requests in the Facebook iOS SDK? I saw Ole Begemann's post that it now "just works", but I get the request dialog every time.
推荐答案
可以通过设置无摩擦apprequests对话框的参数为1。例如;
Frictionless requests can be turned on by setting the "frictionless" parameter of the apprequests dialog to "1". For example;
// 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];
这也回答了
这篇关于iOS上的无摩擦请求 - 如何?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!