在 Android 中使用 Facebook Android SDK 将照片上传到 Facebook
我是安卓新手。我正在搜索通过授权将照片加载到 Facebook,获取 access_token。如何做到这一点?请给我一个 Java 示例代码。
I'm new to Android. I'm searching for load photo to facebook by authorization, getting access_token. How to do this? Please give me a sample code in Java.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
刚刚在这里发布了上传照片的简单方法:
android facebook 发布照片
代码:
Just posted here the simple way to upload a photo:
android facebook publish photo
Code:
这是整个代码,尝试一下它肯定对你有用,对我也有用
here is the whole code try it it will definately work for you and it is work for me also
对您来说最简单的方法是使用现有的 SDK,如下所示:
http://github.com/facebook/facebook-android-sdk/< br>
http://code.google.com/p/fbconnect-android/< br>
http://wiki.developers.facebook.com/index.php/User: Android
更灵活的方法是自己实现 API,以下是有用的文档:
http://developers.facebook.com/docs/
The easiest way for you is to use the existing SDK, something like that:
http://github.com/facebook/facebook-android-sdk/
http://code.google.com/p/fbconnect-android/
http://wiki.developers.facebook.com/index.php/User:Android
The more flexible way is to implement the API yourself, here are the docs that will be useful:
http://developers.facebook.com/docs/
如果您想发布带有描述的照片,您可以执行以下操作:
If you want to publish a photo with a description you can do this :
我已成功将照片上传到 Facebook 墙上
我使用了以下代码。
在您的主要活动中执行以下操作;
此代码当然会对您有所帮助。
Successfully i have uploaded the photos on facebook wall
I used the following code.
In your Main Activity do the following;
Surely This code will help you.