在android中使用graph api v2.3获取朋友的个人资料图片网址或个人资料图片

时间:2016-01-10 06:11:38

标签: android facebook-graph-api

 new GraphRequest(AccessToken.getCurrentAccessToken(),
                                        "/"+userId+"/picture",
                                        null,
                                        HttpMethod.GET,
                                        new GraphRequest.Callback() {
                                            public void onCompleted(GraphResponse response) {
            /* handle the result */             Log.e("new Response","----"+response);
                                            }
                                        }
                                ).executeAsync();
                                }

我得到的反应如下。

回复:

  

responseCode:200,graphObject:   {" FACEBOOK_NON_JSON_RESULT":" \ u0000的\ u0010JFIF \ u0000的\ U0001 \ U0002 \ u0000的\ u0000的\ U0001 \ u0000的\ U0001 \ u0000的\ u0000的\ u0000Photoshop&#34 ;},   错误:null}

1 个答案:

答案 0 :(得分:0)

创建简单的executeGraphPathRequestAsync请求,而不是创建GET请求。

graph.facebook.com/YOUR_USER_ID/picture

检查以下链接以从远程网址获取图片:

How to load an ImageView by URL in Android?