这是我到目前为止所获得的,返回的结果是空的
$params = array(
"method"=>"admin.setRestrictionInfo",
"restriction_str"=>"{'age':'21+'}"
);
$this->fb->api($params)
根据此页面 http://wiki.developers.facebook.com/index.php/Session_Secret_and_API_Methods
我需要传递Application Secret以及这种类型的API调用,但我无法弄清楚如何使用PHP SDK。
任何输入,指示都会受到欢迎
干杯
答案 0 :(得分:0)
简单
$this->fb->setSession(); //set user session to null
$params = array(
"method"=>"admin.setRestrictionInfo",
"restriction_str"=>array("age"=>18+)
);
$this->fb->api($params);