不能使用Facebook android SDK的'If-None-Match'请求标头

时间:2014-04-04 20:55:42

标签: android facebook-graph-api facebook-android-sdk

我使用Facebook android SDK执行图形调用以获取所有朋友。我试图使用' If-None-Match'请求标头,但我找不到向请求添加标头的方法。我设法从响应中获取eTag标头,但没有选择使用它。这是我的代码:

    Bundle bundle = new Bundle();
    bundle.putString("fields", "id,installed,name,picture");

    new com.facebook.Request(
            ParseFacebookUtils.getSession(),
            "/me/friends",
            bundle,
            HttpMethod.GET,
            new Request.Callback() {
                /**
                 *
                 * @param response
                 */
                @Override
                public void onCompleted(com.facebook.Response response) {

                    // Getting the eTag using response.getHttpConnection.getHeader("eTag");

                }
            }
    ).executeAsync();

0 个答案:

没有答案