我想阅读facebook群组Feed并将限制设置为100。
我的PHP代码:
class Parent {
public final void method() {
}
}
class Child extends Parent {
@Override // <== Won't compile, you simply can't override
public void method() { // <== final methods at all (even if you added
// <== "final" to the declaration)
}
}
如何将限制设置为100?
答案 0 :(得分:1)
您可以设置限制字段。根据doc,最大值为100。 https://developers.facebook.com/docs/graph-api/reference/v2.5/page/feed
以下示例供您参考。
/feed?limit=100
答案 1 :(得分:0)
设置限制将如下所示:
$feed = $facebook->api("/<groupid>/feed?limit=100");
请注意,根据群组的类型,存在访问限制。
见