Questions tagged [android-simple-facebook]

Simple Facebook SDK for Android which wraps and simplifies original Facebook SDK.

This is a library project which makes the life much easier by coding less code for being able to login, publish feeds and open graph stories, invite friends and more.

Github: https://github.com/sromku/android-simple-facebook

51 questions
1
vote
1 answer

How to login using android-simple-facebook?

I need to get the basic user data, like Name, Email Address, Profile Picture, Birthdate etc. I want to get this data from Facebook by offering users a login through Facebook in my android app instead of asking them to enter it manually. I want to…
Ishan
  • 3,303
  • 5
  • 29
  • 47
1
vote
0 answers

android simple facebook returns "Canceled by user" when publishing post

I have configured android simple facebook library for my app. It's working properly, but the problem is when using mSimpleFacebook.publish(feed, true, onPublishListener), it always fails with error "canceled by user". Permission[] permissions = new…
Hamed Afshar
  • 173
  • 2
  • 14
1
vote
1 answer

How to start an activity that is in a jar file?

I'm working on an android app which uses facebook sdk and the android-simple-facebook library (a "wrapper" library). The android-simple-facebook lib depends on facebook sdk and my app depends on android-simple-facebook. I created a jar file (via…
ronlut
  • 572
  • 5
  • 17
1
vote
1 answer

android simple facebook returning "cancelled by user" when trying to share a post

I have downloaded and setup the android simple facebook sdk from github. I have made a simple page to test publishing a feed, and I was able to get to the point where I can add a message and click "share". However, once I click share, a progress…
JStephen
  • 1,059
  • 3
  • 13
  • 28
1
vote
1 answer

Facebook upload Dialog from my android application

Im developing an android application which will upload and share a photo from my app to my facebook timeline, how can i do this? See image : I've been taking too much time reading the facebook docs, but found no luck, also i tried this very useful…
jofftiquez
  • 7,548
  • 10
  • 67
  • 121
0
votes
0 answers

Facebook access token email null

I had implemented Facebook login integration in my App. Issue is i am getting only name and id in my access token. I know it might be duplicate question but problem is bit different. In graph response i am getting all the requested parameters .…
young_08
  • 1,196
  • 2
  • 13
  • 35
0
votes
0 answers

Getting all my photos from Facebook using facebook-simple library

i have been trying for hours to figure it out what is going wrong and how i can achieve this. First let me introduce you one of the greatest library simple-facebook. Everything was working well (Login and logout), but when i have tried to use some…
0
votes
2 answers

Android Facebook invites not working properly

I am using Simple Facebook. Unfortunately I can't send invites with SimpleFacebook so I am using AppInviteDialog to invite friends. public void openDialogInvite(final Activity activity) { String AppURl = "my FB url..."; //Generated from //fb…
0
votes
1 answer

Publish Photo on Facebook with Progress bar

I use an Indeterminate progress dialog when I publish, but I want to replace it with a progress bar, with upload percent, like what Facebook is doing. I used android-simple-facebook library but I can use native Facebook SDK too, if it will do what I…
Ma7moud El-Naggar
  • 548
  • 1
  • 6
  • 18
0
votes
1 answer

SimpleFacebook.getInstance() return null

just found this great library! make all preparations, all the same as in repo wiki. here is my code for btn login: @OnClick(R.id.btn_sort_fb) public void onFbClecked(){ if (!mIsFbSortActive){ SimpleFacebook fb =…
Stan Malcolm
  • 2,740
  • 5
  • 32
  • 53
0
votes
0 answers

Incorporating Simple-Facebook but get error

I am trying to use Simple-Facebook. Everything looks great and i have no errors....until i run it.... Then i get this error Add reference from Simple Facebook project to FacebookSDK project. It says that something is wrong here @Override …
Wildblue09
  • 337
  • 1
  • 3
  • 13
0
votes
0 answers

How to import nested library project in Android Studio

I'm following this github library: android simple facebook and this is the wiki page: setup project. I'm using Android Studio 1.1.0 and i've got lot of troubles trying to follow first 3 steps of the guide. In particular this is what i do: 1)…
0
votes
1 answer

Where pubish_stream permission?

I'm making an app for Android. My app capture and save video to facebook. I find a cool library: Simple Facebook: https://github.com/sromku/android-simple-facebook/. But when I try to publish video it say to me that I must to add permission…
Dima Karaush
  • 93
  • 2
  • 9
0
votes
1 answer

Published Facebook Feed can Only be Seen by Self

I'm using sromku to share score from my LibGDX game. The feed was successfully published, but no one can see it but myself (even when my profile is seen by others). Code: public class AndroidLauncher extends AndroidApplication implements…
Jay Kazama
  • 3,167
  • 2
  • 19
  • 25
0
votes
1 answer

Exception thrown when calling getFriends

I get this exception, "Can't create handler inside thread that has not called Looper.prepare()", thrown when I call either get or getFriends. Here is the code I use for getFriends. It is called from the main thread. public void returnFriendIDs(final…
ruler501
  • 197
  • 1
  • 1
  • 12