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
0
votes
0 answers

How to get birthday from facebook android i am using android-simple-facebook library

How to get birthday from facebook in android i am using android-simple-facebook library but its not working with its birthday permission.please guide me in the right direction. Permission[] permissions = new Permission[] { Permission.EMAIL, …
raktale
  • 465
  • 3
  • 12
0
votes
2 answers

Android app facebook login : NULL pointer exception

My problem is somewhat like these only... First and Second Question. I've tried everything given on these posts but to no relief. So I am using android-simple-facebook library to create a facebook login. Here's my LoginActivity.java public class…
suneet
  • 400
  • 1
  • 5
  • 19
0
votes
1 answer

Sromku facebook login issue

I'm trying to use SimpleFacebook SDK to log in and share something on my wall, but seems that is not possible because I get this in the logCat: 09-11 16:08:30.836: E/ActivityThread(12092): Failed to find provider info for…
Darko Petkovski
  • 3,892
  • 13
  • 53
  • 117
0
votes
0 answers

Facebook Login Webview is blank

I'm using the android-simple-facebook library to provide a login button in my Android app. When the Facebook app is not installed on the device, I see a blank webview popup dialog instead of a login webpage. I see this in my logs: 08-24…
skunkwerk
  • 2,920
  • 2
  • 37
  • 55
0
votes
1 answer

Can a posting from a facebook app to a users timeline contain images?

I am using facebook-cordova -> "Simple Facebook" -> Facebook SDK -> Graph API from an android app and an IOS app. The functions I use in facebook-cordova to do the actual postings are named .feed() and .share(). They seems to be interchangeable on…
Anders Lindén
  • 6,839
  • 11
  • 56
  • 109
0
votes
2 answers

warning showing sessionless request in facebook sdk

I am creating a libgdx game and to add social features to the game I am adding Facebook SDK but I always get a warning in logcat stating: "Warning: Sessionless Request needs token but missing either application ID or client token.". Firstly I tried…
0
votes
1 answer

publish feed simple facebook fails with "cancelled by user"

I'm using the simple facebook library in my android application. Publishing to the user's timeline works correctly if the user doesn't have the Facebook application installed. However, if the application is installed on the device, the publish…
Julio Mendoza
  • 310
  • 1
  • 4
  • 11
0
votes
1 answer

Android Facebook SDK - username is getting null

I am using simple facebbok to integrate facebook to my application.i need to send the facebook username to server.but i got the username as null from profile listner. here is my code public void loginToFacebook(View v){ …
Sujiz
  • 1,720
  • 1
  • 20
  • 30
0
votes
1 answer

How to get feeds of facebook using simple facebook?

I am trying to get all the feeds of facebook id. I got all the feeds using graph explorer tools but when I use simple facebook 2.0 in android, I didn't get all feeds but few. `String entityId = "me"; String edge = "feed"; //Bundle params…
0
votes
0 answers

SimpleFacebook gives me nullPointerException

CODE SimpleFacebook simpleFacebook; simpleFacebook = SimpleFacebook.getInstance(this); Above is the part of code. When I used above object to get user profile info, it gave Nullpointer Exception. What is my problem?
0
votes
1 answer

Android-simple-facebook lib, get user birthday date

The question in github I'm using android-simple-facebook lib to make login in facebook and get some user data. In this case the problem that I'm facing is that I can't get the user's birthdate data. I've set the permissions to the…
Mun0n
  • 4,438
  • 4
  • 28
  • 46
0
votes
0 answers

Get Activity from Service (Daydream)

I'm trying to make a daydream that uses the Facebook SDK with Android-Simple-Facebook. Daydreams run as a service and has no associated activity as far as I am aware. I'm having an issue where I need to pass an Activity (not a context...) through to…
Mgamerz
  • 2,872
  • 2
  • 27
  • 48
0
votes
0 answers

onLogin() function not being called

We're using the same procedure and code given in gitHub, but the function onLogin() in the onLoginListener is not being called, because of which we can't proceed. We're doing everything as mentioned, but still the onLogin function is not working.…
KSH
  • 1
0
votes
0 answers

Android: Fetch content on activity open

What i am trying to do is that when the activity is opened, the content will start loading/fethcing in a listview "automatically". I'm using the simple facebook library to fetch a list of friends, right now i have a button that fetches the content…
da_st
  • 402
  • 2
  • 10
  • 27
0
votes
1 answer

simplefacebook SSO fallback won't do anythin

I have tried the Wrapper with facebook installed and everything worked fine: SSO, then publish via custom dialog and everything worked fine. Then i wanted to do the same on a machine without the facebook app installed, but after the login dialog…