我的GraphRequest
代码
GraphRequest livestream = GraphRequest.newPostRequest(
graphRequest.getAccessToken(),
"/" + graphRequest.getAccessToken().getUserId() + "/live_videos",
new JSONObject("{\"title\":\"todayLive\",\"description\":\"This is the live video for today.\", \"status\" : \"LIVE_NOW\", \"targeting\" : \"\"}"),
new GraphRequest.Callback() {
@Override
public void onCompleted(GraphResponse response) {
Log.e("live : ", response.toString());
jsonString = response.getJSONObject().toString();
}
});
livestream.executeAsync();
这可行,但是我只得到private
个流。
如何仅获取public
个流?