- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我在一个应用程序中工作,我必须在其中从 Facebook 获取所有好友列表。
我已经实现了这样的代码:
Facebook mFacebook = new Facebook("141118172662401");
AsyncFacebookRunner mAsyncRunner = new AsyncFacebookRunner(mFacebook);
Bundle params = new Bundle();
params.putString("fields", "name,id");
mAsyncRunner.request("me/friends", params, "GET", new FriendListRequestListener(), null);
}
});
}
public class FriendListRequestListener {
public void onComplete(final String response) {
_error = null;
try {
JSONObject json = Util.parseJson(response);
final JSONArray friends = json.getJSONArray("data");
FacebookFriendsActivity.this.runOnUiThread(new Runnable() {
JSONObject data;
public void run() {
try{
try {
data = Util.parseJson(response);
} catch (FacebookError e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
JSONArray friendsData = data.getJSONArray("data");
// mDbAdapter.deleteAllFriends();
for (int i = 0; i < friendsData.length(); i++) {
JSONObject friend = friendsData.getJSONObject(i);
/* mDbAdapter.addFriend(friend.getString("name"),
friend.getString("id"));*/
}
}catch (Exception e) {
// TODO: handle exception
}
}
});
} catch (JSONException e) {
_error = "JSON Error in response";
} catch (FacebookError e) {
_error = "Facebook Error: " + e.getMessage();
}
if (_error != null)
{
FacebookFriendsActivity.this.runOnUiThread(new Runnable() {
public void run() {
Toast.makeText(getApplicationContext(), "Error occurred: " +
_error, Toast.LENGTH_LONG).show();
}
});
}
}
}
在这一行抛出错误:
mAsyncRunner.request("me/friends", params, "GET", new FriendListRequestListener(), null);
这有什么问题吗?还添加了异步类..
如果有任何其他方法或来源可以找到 Facebook 好友,请告诉我。
最佳答案
用这个来获取好友列表。
public class FriendsList extends Activity implements OnItemClickListener
{
private Handler mHandler;
protected ListView friendsList;
protected static JSONArray jsonArray;
protected String graph_or_fql;
/*
* Layout the friends' list
*/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mHandler = new Handler();
setContentView(R.layout.friends_list);
Bundle extras = getIntent().getExtras();
String apiResponse = extras.getString("API_RESPONSE");
graph_or_fql = extras.getString("METHOD");
try {
if(graph_or_fql.equals("graph")) {
jsonArray = new JSONObject(apiResponse).getJSONArray("data");
} else {
jsonArray = new JSONArray(apiResponse);
}
} catch (JSONException e) {
showToast("Error: " + e.getMessage());
return;
}
friendsList = (ListView)findViewById(R.id.friends_list);
friendsList.setOnItemClickListener(this);
friendsList.setAdapter(new FriendListAdapter(this));
showToast(getString(R.string.can_post_on_wall));
}
/*
* Clicking on a friend should popup a dialog for user to post on friend's wall.
*/
@Override
public void onItemClick(AdapterView<?> arg0, View v, int position, long arg3) {
try {
final long friendId;
if(graph_or_fql.equals("graph")) {
friendId = jsonArray.getJSONObject(position).getLong("id");
} else {
friendId = jsonArray.getJSONObject(position).getLong("uid");
}
String name = jsonArray.getJSONObject(position).getString("name");
new AlertDialog.Builder(this)
.setTitle(R.string.post_on_wall_title)
.setMessage(String.format(getString(R.string.post_on_wall), name))
.setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
Bundle params = new Bundle();
/*
* Source Tag: friend_wall_tag
* To write on a friend's wall, provide friend's UID in the 'to' parameter.
* More info on feed dialog - https://developers.facebook.com/docs/reference/dialogs/feed/
*/
params.putString("to", String.valueOf(friendId));
params.putString("caption", getString(R.string.app_name));
params.putString("description", getString(R.string.app_desc));
params.putString("picture", Utility.HACK_ICON_URL);
params.putString("name", getString(R.string.app_action));
Utility.mFacebook.dialog(FriendsList.this, "feed", params, new PostDialogListener());
}
})
.setNegativeButton(R.string.no, null)
.show();
} catch (JSONException e) {
showToast("Error: " + e.getMessage());
}
}
/*
* Callback after the message has been posted on friend's wall.
*/
public class PostDialogListener extends BaseDialogListener {
public void onComplete(Bundle values) {
final String postId = values.getString("post_id");
if (postId != null) {
showToast("Message posted on the wall.");
} else {
showToast("No message posted on the wall.");
}
}
}
public void showToast(final String msg) {
mHandler.post(new Runnable() {
public void run() {
Toast toast = Toast.makeText(FriendsList.this, msg, Toast.LENGTH_LONG);
toast.show();
}
});
}
/**
* Definition of the list adapter
*/
public class FriendListAdapter extends BaseAdapter {
private LayoutInflater mInflater;
FriendsList friendsList;
public FriendListAdapter(FriendsList friendsList) {
this.friendsList = friendsList;
if(Utility.model == null) {
Utility.model = new FriendsGetProfilePics();
}
Utility.model.setListener(this);
mInflater = LayoutInflater.from(friendsList.getBaseContext());
}
@Override
public int getCount() {
return jsonArray.length();
}
@Override
public Object getItem(int position) {
return null;
}
@Override
public long getItemId(int position) {
return 0;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
JSONObject jsonObject = null;
try {
jsonObject = jsonArray.getJSONObject(position);
} catch (JSONException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
View hView = convertView;
if(convertView == null) {
hView = mInflater.inflate(R.layout.friend_item, null);
ViewHolder holder = new ViewHolder();
holder.profile_pic = (ImageView)hView.findViewById(R.id.profile_pic);
holder.name = (TextView) hView.findViewById(R.id.name);
holder.info = (TextView) hView.findViewById(R.id.info);
hView.setTag(holder);
}
ViewHolder holder = (ViewHolder) hView.getTag();
try {
if(graph_or_fql.equals("graph")) {
holder.profile_pic.setImageBitmap(Utility.model.getImage(jsonObject.getString("id"), jsonObject.getString("picture")));
} else {
holder.profile_pic.setImageBitmap(Utility.model.getImage(jsonObject.getString("uid"), jsonObject.getString("pic_square")));
}
} catch (JSONException e) {
holder.name.setText("");
}
try {
holder.name.setText(jsonObject.getString("name"));
} catch (JSONException e) {
holder.name.setText("");
}
try {
if(graph_or_fql.equals("graph")) {
holder.info.setText(jsonObject.getJSONObject("location").getString("name"));
} else {
JSONObject location = jsonObject.getJSONObject("current_location");
holder.info.setText(location.getString("city") + ", " + location.getString("state"));
}
} catch (JSONException e) {
holder.info.setText("");
}
return hView;
}
}
class ViewHolder {
ImageView profile_pic;
TextView name;
TextView info;
}
}
还有 FriendsGetProfilePics
public class FriendsGetProfilePics
{
Hashtable<String, Bitmap> friendsImages;
Hashtable<String, String> positionRequested;
BaseAdapter listener;
int runningCount = 0;
Stack<ItemPair> queue;
/*
* 15 max async tasks at any given time.
*/
final int MAX_ALLOWED_TASKS = 15;
public FriendsGetProfilePics() {
friendsImages = new Hashtable<String, Bitmap>();
positionRequested = new Hashtable<String, String>();
queue = new Stack<ItemPair>();
}
/*
* Inform the listener when the image has been downloaded.
* listener is FriendsList here.
*/
public void setListener(BaseAdapter listener) {
this.listener = listener;
reset();
}
public void reset() {
positionRequested.clear();
runningCount = 0;
queue.clear();
}
/*
* If the profile pictore has already been downloaded and cached, return it
* else excecute a new async task to fetch it -
* if total async tasks >15, queue the request.
*/
public Bitmap getImage(String uid, String url) {
Bitmap image = (Bitmap)friendsImages.get(uid);
if(image != null) {
return image;
}
if(!positionRequested.containsKey(uid)) {
positionRequested.put(uid, "");
if (runningCount >= MAX_ALLOWED_TASKS) {
queue.push(new ItemPair(uid, url));
} else {
runningCount++;
new GetProfilePicAsyncTask().execute(uid, url);
}
}
return null;
}
public void getNextImage() {
if(!queue.isEmpty()) {
ItemPair item = (ItemPair)queue.pop();
new GetProfilePicAsyncTask().execute(item.uid, item.url);
}
}
/*
* Start a AsyncTask to fetch the request
*/
private class GetProfilePicAsyncTask extends AsyncTask<Object, Void, Bitmap> {
String uid;
protected Bitmap doInBackground(Object... params) {
this.uid = (String)params[0];
String url = (String)params[1];
return Utility.getBitmap(url);
}
protected void onPostExecute(Bitmap result) {
runningCount--;
if(result != null) {
friendsImages.put(uid, result);
listener.notifyDataSetChanged();
getNextImage();
}
}
}
class ItemPair {
String uid;
String url;
public ItemPair(String uid, String url) {
this.uid = uid;
this.url = url;
}
}
}
关于android - 如何用他们的个人资料图片、姓名和 ID 查找或获取 facebook 的所有好友列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8454882/
我为我们的业务创建了一个 Facebook 页面,我创建了一个 Facebook 应用程序来获取 AppID,以便在 Facebook 插件中使用它。 我注意到 Facebook 应用程序的页面看起来
是否有可能知道哪个 Facebook 用户点击了我的应用用户在 Facebook 上分享的链接? 为了清楚起见,让我改写一下:我想知道我的应用用户的哪些 friend 点击了他的共享链接。 感谢任何提
我正在浏览 facebook pixel,对 facebook pixel 如何知道哪个转化来自哪个 facebook 广告感到很困惑? 假设我有这个 url http://example.com安装
我正在开发 sucsongmoi.net(越南语),当浏览者从他们的墙上分享网站链接时,一些链接 facebook 获得描述和图像,一些链接 facebook 无法获得描述和图像。 例如:分享 suc
一位同事错误地设置了个人 Facebook 页面;它应该是一个企业 Facebook 页面。 个人页面上有几个 friend 需要重定向到正确的 Facebook 业务页面。 我可以将用户从错误的个人
在 Facebook 上,当您转到“编辑我的个人资料”>“艺术和娱乐”时,会有一个“电影”自动完成小部件,它会在您输入电影时推荐电影。 因此,如果您输入“Jones”,它将开始建议: 印第安纳琼斯 布
我在我的网页上使用 Facebook 登录。首次登录时,Facebook 登录应用程序会请求获取用户数据的权限。 有什么方法可以改善这个问题,以请求喜欢我的 Facebook 页面的许可?用户点击后,
我需要知道是否可以将现有的 Facebook 页面(类别:应用程序页面)链接到 Facebook 应用程序?当我进入 Facebook 应用程序设置时,他们建议创建一个新页面。但我需要的只是链接到现有
我的网站应用程序具有通过 Facebook 登录进行登录的功能。为此,我的应用程序出现在 Facebook 上。使用 Facebook 登录工作正常。 但应用程序具有将 Facebook 帐户链接和取
我正在制作一个应用程序,让人们可以在 Facebook 上与特定的 friend 分享内容。示例:Alice 使用我的应用程序,她与 Bob 分享了一篇文章,Bob 是她的 Facebook 好友。现
我正在按照列出的说明进行操作 http://docs.appcelerator.com/platform/latest/#!/api/Modules.Facebook 并查看 Arrow 示例目录中的
假设我有一个餐厅的商业网站,一位顾客为一大群人预订了一张 table 。有没有一种方法可以让客户有机会在餐厅网站上创建 Facebook 事件,作为预订流程的一部分。我知道客户必须以某种方式从餐厅网站
我想让我的用户将他们的用户帐户与 Facebook 或 Twitter 相关联,并允许他们使用他们的 Facebook/Twitter 帐户登录我的服务器,而不是使用传统的用户名/密码。与StackO
我们有一个面子书页面。我们添加了一个自定义 FBML 选项卡。现在我们要添加评论面子书插件。我尝试添加一个脚本,我从 Face book Social Plug in .代码是 之后我将此脚本放入自
大家好 请帮我找到关于以下的官方信息: 1) 什么是“FaceBook 登录” 2) 什么是“FaceBook Connect” 谢谢 最佳答案 你可以在那里找到你需要的一切: http://deve
这是最奇怪的事情。我有非常简单的 CF 代码,查看 cgi.HTTP_REFERER。简单地说,它查看推荐人。如果链接是从我们的主要网站域之外单击的,它会显示一些内容。否则,什么也不会发生。所以,如果
我还是 Facebook Graph API 的新手,正在尝试开始使用 Facebook 地点搜索。 (按位置搜索地点) https://graph.facebook.com/search?type=
我不想开设 Facebook 帐户,但我被要求为需要使用 Facebook API 的应用程序开发功能。有没有一种方法可以开发这些功能并使用 Facebook API,而无需开设个人 Facebook
我已经按照指示实现了 DotNetOpenAuth 提供的示例应用程序 here . 正如您在下面看到的,这要求用户安装此 facebook 应用程序。 我只是想让用户使用他们的 Facebook 登
我的主页上有标准的 Facebook 登录按钮,我不希望人们仅在用户单击登录按钮时使用他们的 Facebook 帐户自动登录我的网站。 如果用户未登录 Facebook,将出现一个弹出窗口询问他的凭据
我是一名优秀的程序员,十分优秀!