我正在创建一个与Facebook集成的安卓游戏,使用图表检索他们的照片和名字以及其他信息,我发现如何使用下面的代码检索他们的照片,这完全有效,但我正在努力找到提取其他信息的工作示例,如first_name等...
我用来检索照片并在ImageView中显示的代码如下所示。
public void showPhoto(View v) {
try {
ImageView MyProfilePicImageView = (ImageView)findViewById(R.id.temp);
URL MyProfilePicURL = new URL("https://graph.facebook.com/me/picture?type=normal&method=GET&access_token="+ access_token );
Bitmap MyprofPicBitMap = null;
try {
MyprofPicBitMap = BitmapFactory.decodeStream(MyProfilePicURL.openConnection().getInputStream());
MyProfilePicImageView.setImageBitmap(MyprofPicBitMap);
}
catch (IOException e) {
e.printStackTrace();
}
} catch (MalformedURLException e) {
e.printStackTrace();
}
}
我搜索了高低,但似乎无法找到有关如何使用图表检索其他信息的信息,其他信息意味着first_name等...包括在facebook开发者网站上的https://developers.facebook.com/docs/reference/api/ )但找不到一个有效的例子。
有人能告诉我一个工作示例来检索用户的first_name,以便我可以在textview中显示它吗?
答案 0 :(得分:4)
使用此网址"https://graph.facebook.com/me/friends?access_token="+accessToken
,您可以获取包含其名称和ID的朋友,以获取有关其中任何一个的信息,只需使用“”https://graph.facebook.com/"+yourFriendId+"?access_token= “+的accessToken”
这将返回你可以解析的json并使用实例
HttpClient httpclient = new DefaultHttpClient();
String url = "https://graph.facebook.com/me/friends?access_token=" + URLEncoder.encode(token);
HttpGet httppost = new HttpGet(url);
try {
HttpResponse response = httpclient.execute(httppost);
// to get the response string
BufferedReader reader = new BufferedReader(
new InputStreamReader(
response.getEntity().getContent(), "UTF-8"));
// used to construct the string
String res = "";
for (String line = null; (line = reader.readLine()) != null;) {
res += line + "\n";
}
// here we will parse the response
JSONObject obj = new JSONObject(new JSONTokener(res));
JSONArray data = obj.getJSONArray("data");
int len = data.length();
for (int i = 0; i < len; i++) {
JSONObject currentResult = data.getJSONObject(i);
String name = currentResult.getString("name");
String icon = currentResult.getString("id");
// do what ever you want
}
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
答案 1 :(得分:0)
如果您将请求网址更改为/me
(即https://graph.facebook.com/me?type=normal&method=GET&access_token=...
),您将获得当前经过身份验证的用户的所有可用配置文件信息。
此JSON对象应具有first_name
和last_name
,以及其他属性foud here。
查看此handy API explorer tool以了解您应该看到的内容。