【发布时间】:2014-11-20 11:02:24
【问题描述】:
我只想触发图形 api 以获取相应 media_id 的喜欢/cmets 总数。
new Request(ParseFacebookUtils.getSession(), "/" + Post_Id
+ "/likes", null, HttpMethod.GET,
new Request.Callback() {
public void onCompleted(Response response) {
/* handle the result */
Debug.e("posted id likes responses", response.toString());
JSONObject graphResponse = response.getGraphObject()
.getInnerJSONObject();
Debug.e("posted id graph responses",
graphResponse.toString());
}
}).executeAsync();
- 我们能否使用 instagram rest api 获得 media_id 的点赞数/cmets 数。我已经搜索了他们的文档。我找不到任何端点。
3.我们是否有 Instagram 的 jsonobject 来告诉我该用户是否关注你,类似于 Is_User_Liked。
【问题讨论】:
标签: android ios facebook facebook-graph-api instagram