The Facebook SDK for Android helps Android app developer implement Facebook functionality into their Android apps. Features include Facebook Login, Friend and Place pickers, session management, native object responses from the Graph API and Feed and Requests dialogs.

learn more… | top users | synonyms

2
votes
3answers
283 views

Facebook LoginButton for Android does not take login_text and logout_text values passed from XML

Facebook Sdk for Android does not take login_text and logout_text values passed from XML. It just ignores it. There is no documentation/example available on earth which uses this customization of the ...
0
votes
1answer
17 views

Facebook sdk 3.0.1 is not working properly

I am trying to login into the Facebook using Facebook sdk .But it not logging in .Its opening the dialog box but after getting the credentials its not working . If i install the Facebook app it opens ...
0
votes
0answers
18 views

Facebook Integration in Android Application

I had integrated facebook in my android application . Generate key using debugkeytool and it works fine on both emulator and real device. Now i have to make release apk file and i had created ...
0
votes
1answer
40 views

Method is called multiple times but called only once

I implemented Facebook SDK in my Android application. I am using the login function of the SDK. What i am trying to do is the following : When MainActivity starts, check if there is an active ...
0
votes
0answers
12 views

Android SDK VS Facebook R class conflict?

Okay first of all what I am doing is trying to integrate my Android game which is fully functional and tested to be working code onto Facebook. I have been following the Facebook tutorial on how to ...
0
votes
1answer
29 views

Facebook session throughout the Application - Android

I'm using Facebook SDK 3.0 in my app. I'm able to get user details like access token, email and name through session login example provided in the Facebook Samples. I'm initializing session object and ...
1
vote
2answers
81 views

Refresh token permissions in Facebook Android SDK

I have been looking everywhere, but I cannot find any specific information. according to the latest SDK 3.0 documentation ...
0
votes
1answer
35 views

The method getRequestCode() is undefined for the type SelectionFragment

Excuse me, I want to try facebook developer for android Tutorial. at Show Friends part. I have succeed doing Step hello Scrumptious, Autenticate with login and personalize part. At Show Friends part, ...
0
votes
0answers
23 views

Not able to login facebook using sdk 2.0 on android [closed]

We have implemented Facebook login using the old sdk(v2.0) in more than five projects but as per this link Moving to 3.0 Developers should move to SDK 3.0 by June 13, 2013, at which time we will end ...
3
votes
1answer
39 views
+50

Should Android apps with a server side component access Facebook directly?

If I am building an Android app that uses the Facebook SDK and also has a web app that has most of the same functionality, how should the Android app handle social actions? Should it directly make ...
1
vote
1answer
26 views

Is there a workaround for when HttpURLConnection.getResponseCode throws NullPointerException?

I'm getting a lot of errors caused by the error already explained here. Basically it happens on android 2.3 or below, when you call getResponseCode of a HttpURLConnection, what is weird is that this ...
3
votes
2answers
69 views

FbDialog doesn't show full content on smaller devices

Steps to repro Log in to FB with new FB account I can see the webdialog showing me current goals and other stuff, but I can not see Authorize OK cancel buttons(probably moved down). I can not scroll ...
1
vote
1answer
22 views

Android Facebook session issue

I have used following code for Facebook authentication and it is working fine, but when I have cancelled the authentication and tried to authenticate again the app crashed and the log was Caused by: ...
0
votes
1answer
79 views

Android FacebookSDK 3.0.b getAttributionId always returns null

I am attempting to setup one of our titles to use the latest Facebook SDK. The primary function of interest is Settings.getAttributionId (formerly Facebook.getAttributionId) however when I call this ...
0
votes
1answer
34 views

Android and Facebook SDK 3.0.1 function getUserID

I am implementing the new Facebook SDK 3.0.1 and I have some doubts about use with Session. I created a function to query just the user id: String userID; public String getUserID(){ ...
1
vote
1answer
34 views

facebook-android-sdk: Force reauthentication using the sdk 3.0.1

Is there a way to trigger a reauthentication dialog using the facebook-android-sdk 3.0.1? It is possible using the JavaScript SDK (see ...
0
votes
0answers
17 views

facebook Request not working

I'm making a request to Facebook api in android with SDK 3.0.1 and I'm running it with executeAndWait() but the request doesn't work (in debug it jumps directly to next row, not even a millisecond..) ...
7
votes
1answer
310 views

Android Studio - Facebook Login button render error

I have a problem regarding the Facebook SDK and the Login Button. When I tried to put the Login Button, I receive this message Rendering Problems The following classes could not be found: ...
2
votes
2answers
92 views

How to get facebook profile picture of user in facebook SDK 3.0 Android

i am using facebook SDK 3.0 i have to get profile picture of user login. Here is the code I use: URL image_value = new URL("http://graph.facebook.com/"+id+"/picture" ); ...
23
votes
6answers
9k views

Android Facebook SDK 3.0 gives “remote_app_id does not match stored id” while logging in

I'm trying to build a app that uses Facebook SDK for Android 3.0. But when I'm trying to call Session.openActiveSession It just simply gives me a SessionState with CLOSED_LOGIN_FAILED, and LogCat ...
0
votes
0answers
14 views

Facebook library removes other libraries

When I add the facebookSDK to my current project it removes the other libraries (e.g. GSON) When I manually try to re-add these libraries the project won't recognise them. What am I doing wrong? ...
-1
votes
0answers
16 views

FacebookSDK removes other libraries [closed]

When I add the facebookSDK to my current project it removes the other libraries (e.g. GSON) When I manually try to re-add these libraries the project won't recognise them. What am I doing wrong? ...
3
votes
1answer
262 views

Getting invalid android_key parameter error, after first time login in Facebook Android SDK

I have got the hash key from my debug store using keytool -exportcert -alias androiddebugkey -keystore C:\Users\user.android\debug.keystore | openssl sha1 -binary | openssl enc -a -e and pasted the ...
0
votes
3answers
519 views

Facebook SDK 3 Login Button Identify on click

I am using com.facebook.widget.LoginButton component to log into Facebook: public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = ...
2
votes
0answers
78 views

Facebook Android SDK ProfilePictureView caching

I am using ProfilePictureView class to display profile pictures. It takes a bit of time to request these images and display them. In a ListView with multiple profile pictures, then it will clearly ...
0
votes
0answers
73 views

How to post a Like and Comment on photo facebook sdk 3 for Android

I want to know how to post a like and comment on a photo,I can provide photo id and current active session. So please let me know to do it.Any sample code??
0
votes
0answers
31 views

facebook SDK library disabeling

I've added the FacebookSDK project to my workspace, but when I try to add it as a library to my project it keeps getting disabled. When I add it (by "Properties -> Android -> Library") it gets a green ...
2
votes
5answers
261 views

Android application has a red exclamation mark in Eclipse after importing the Facebook library

I imported the Facebook library following this tutorial: http://developers.facebook.com/docs/getting-started/facebook-sdk-for-android/3.0/ And now I am ready to compile and try to run the project, ...
0
votes
2answers
553 views

Facebook android SDK 3.0 - NullPointerException at .getInnerJSONObject()

I'm using Facebook SDK 3.0 (final release) for Android. I'm getting a NullPointerException at .getInnerJSONObject() at times (not always) when i try to post a new status on logged in user's feed. ...
2
votes
0answers
134 views

Android Facebook SDK integration

I want to integrate facebook api in android. I had implemented facebook 2.0 earlier I want to know if facebook sdk 2.0 is deprecated or not because I want to use 2.0 instead of facebook sdk 3.0 due to ...
1
vote
0answers
27 views

How to know when to update my facebook profile pic from cache?

In my app, am caching facebook profile pics in sdcard (for caching) with filenames stored as URL link "http://graph.facebook.com/1146636239/picture" --> Something like this. Whenever i look for ...
20
votes
9answers
10k views

Android invalid key and Facebook Connect

When I try to implement Facebook Connect in my Android application, I get the following error. 11-02 16:41:31.660: D/Facebook-authorize(13194): Login failed: invalid_key:Android key mismatch. ...
0
votes
2answers
194 views

how to use facebook sdk to sign in on an Android phone?? (error= applicationID is null)

I can't figure out why I keep getting a null pointer exception ("applicationID cannot be null"). My code looks almost identical to this. The only part I don't use is the "welcome text" ...
-1
votes
0answers
40 views

How to login facebook in android by using facebook sdk 3.0.1? [closed]

I want to login facebook by using facebook latest sdk in android.I follow facebook developers blog and create sample application by using this link ...
0
votes
3answers
55 views

login once and skip login layout everytime app starts after first login

I am writing an android application where I want to integrate facebook login using facebook sdk 3.I have tried lots of tutorial but now successful.Can anyone give me a complete guide by which I can ...
0
votes
2answers
177 views

Facebook android sdk 3.0 login issue

I have recently upgraded my code to use FB android SDK 3.0. My application has four activities and DOES NOT use fragments. Strangely my code works without any problem on android 2.3.4. But in android ...
0
votes
1answer
63 views

Is it possible to change Facebook login button image in Facebook Android SDK3?

Facebook Android sdk has a com.facebook.widget.LoginButton I want to put my own image for the Login button. Is it possible ? So far i've tried adding android:src="@drawable/facebook" to the layout ...
1
vote
1answer
92 views

How to go Next Activity directly after Login in facebook SDK 3.0 in android

i am using facebook SDK 3.0 when i am login to facebook it come back to login screen than go to next Activity but i want to go directly to Next Activity. This is my Code :- if (session.isOpened()) { ...
5
votes
3answers
2k views

Facebook Android SDK 3.0 always returns OPENING when logging in

I followed the instructions at https://developers.facebook.com/docs/howtos/androidsdk/3.0/login-with-facebook/. When I touch the "Log In"-button, the session state is OPENING - always. When I try to ...
0
votes
1answer
271 views

Getting email address by using Facebook SDK 3.0.1 for Android

I'm currently developing an application which aims to authenticate any user by using Facebook acoount. I have a trouble in getting user email from user's account. My code is below private void ...
1
vote
2answers
68 views

android facebook post api not working

I am using android facebook api for publishing on users feed. Login is working successfully, but the function publishstory is not working. I have the code below. private void publishStory() { ...
1
vote
2answers
72 views

Can't run with Facebook SDK included

I am stuck when trying to run my app with the FacebookSDK for Android included into my project in IntelliJ IDEA. With a basic Android boilerplate, everything builds and runs fine. But as soon as I ...
0
votes
1answer
74 views

Android facebook sdk, how to post custom statuses with links and photos

With facebook android sdk 3.0, which method do I use to post custom status messages that contain links and link previews, summaries, and a personal message? I have ironed out which permissions I ...
0
votes
0answers
65 views

Facebook Android sdk 3.0 : session is null on Activity result

I try to upgrade Facebook Android sdk from 2.0 to 3.0, but I encounter an issue, here is my case : I have a webview, and I execute the following code when user click on the "Facebook Login" : ...
0
votes
0answers
22 views

Setting url request for facebook in android

I've succesfully sent request facebook with this code protected void sendRequest(String id_user){ Facebook facebook = new Facebook(APP_ID); DatabaseHandler db = new ...
0
votes
2answers
39 views

how do facebook android sample apps work without debug hash?

When I create a facebook app to authenticate android devices, I have to put in a debug hash for testing as well as a hash for my production keystore. Facebook samples apps on the other hand are ...
0
votes
1answer
76 views

Facebook SDK 3.0 - Tutorial

Hey can someone point me in the right direction of a good Facebook tutorial for android? The tutorial their developer site isnt all that good. This is what i've came up with so far: public static ...
1
vote
2answers
108 views

Android Facebook SDK 3.0 Session State “Opening”

I am integrating Facebook's Login using their documentation. I am running into an issue where when i click the Facebook Login Widget the session changes to "Opening" and the app crashes My Layout for ...
0
votes
1answer
59 views

Implementing Facebook login with UiLifecycleHelper

I have MainActivity and a LoginActivity. I created a super class FacebookActivity to keep the UiLifecycleHelper object and all of the overriding methods: MainActivity public class MainActivity ...
1
vote
1answer
556 views

Seem doesn't get Facebook SDK resource when using Facebook Android SDK in IntelliJ IDEA 12

According to the article Add facebook SDK to IntelliJ Android project?, I choose to add the "facebook.jar" file as a Module in the "Dependencies" section in the project structure. The compile process ...

1 2 3 4 5 11