如何在安卓系统中使用Action_view intent在脸书墙上发帖?
我已经完成了facebook sdk与我的Android应用程序的集成,它对我来说工作得很好。
但是我想带着Action_view的意图去做。
发布于 2012-02-22 21:25:08
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse("http://www.facebook.com/dialog/feed?app_id=YOUR_APP_ID&redirect_uri=REDIRECT_URI");它对我来说很好。
将您的appid和重定向uri添加到上面的url。
发布于 2011-12-28 09:14:01
请参考此问题:Android and Facebook share intent
Facebook的股票意图已经被打破了很长一段时间。他们还没有完全修复它。
https://stackoverflow.com/questions/8485393
复制相似问题