0
votes
0answers
14 views
Facebook Android SDK, UiLifecycleHelper StackOverflow error
Getting a strange StackOverflow error from UiLifecycleHelper. It looks like it's trying to load a serialized object, but then the ObjectInputStream runs into a recursive loop, possibly due to corrupt ...
0
votes
0answers
8 views
Facebook fql query cannot get all friends list
when I try to get user's friends list from the Facebook using this fql query
query = "SELECT uid, name. pic_square FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = m() )"
it's not ...
0
votes
1answer
31 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
2answers
28 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
14 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 ...
2
votes
0answers
63 views
Facebook sdk login fails in android app
Several weeks ago I finished my facebook login screen in my app, everything worked fine. Today when I was going to login, my app asked for the permissions, I accepted and then instead of run normally ...
0
votes
1answer
31 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 ...
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
1answer
45 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, ...
1
vote
1answer
23 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: ...
3
votes
1answer
42 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 ...
0
votes
1answer
35 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(){
...
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? ...
7
votes
1answer
320 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:
...
-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? ...
0
votes
0answers
66 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 ...
3
votes
1answer
270 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
1answer
51 views
facebook android sdk, permissions to public to stream with photo
I want to publish to a user's stream/timeline/wall
This will contain and image and a link and text, maybe text of the user's choosing. Anyway what permissions will I need to do this?
publish_stream
...
1
vote
2answers
112 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
62 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 ...
0
votes
2answers
75 views
How to send request on facebook sdk 3.0 Android
i am working on facebook sdk 3.0 in android and need to send request to friends
and my code is :-
private void sendRequestDialog() {
Bundle params = new Bundle();
...
0
votes
0answers
27 views
How to access a post using facebook android sdk
I was reading the reference present at developer.facebook.com for the Facebook Android SDK ..
But I didn't get anything about if we can access a post using this SDK.
If anyone of you have worked with ...
1
vote
1answer
61 views
Creating a Facebook post with rich/interactive content
I'm looking for a way to create a Wall Post from an Android app that can contain styled/interactive content. Something similar to what the Nike+ Running App does:
What is the correct approach to ...
1
vote
1answer
93 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()) {
...
2
votes
2answers
94 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" );
...
1
vote
2answers
69 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
0answers
44 views
Non admin login for facebook android application (sandbox mode disbaled)
I have been trying to use facebook login for my android application.
I made sandbox mode disabled from the beginning of the application.
Key hashes are generated.
App Id, facebook login are enabled.
...
0
votes
1answer
59 views
Facebook native Android API generates error for non-admin users
I wanted to obtain user access token for my application to access logged-in user's photos etc. I created a login button as given on facebook android SDK tutorials. I am able to get access token for my ...
1
vote
2answers
178 views
Set permission for getting User's email ID from Facebook Login
I'm using Facebook 3.0 SDK for android. I have to implement Facebook log in. I'm accessing user's basic info like name, userID. But I want to have access to email also of the user. I have gone through ...
0
votes
1answer
60 views
Activity or Fragment Activity
I am confused to built an app either extending Activity or Fragment Activity using FaceBook SDK. Before Facebook SDK 3.0 I was used normal activity to built the User Interface. But I saw the examples ...
-1
votes
0answers
41 views
share to facebook with autologin android [closed]
i've seen similiar questions but I did'nt understand how to make a Share to Facebook Button( in android) which logins automaticaly and lets you share the inputed string by the app
thank you,
Boaz
2
votes
0answers
135 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 ...
0
votes
2answers
87 views
Facebook Android 3.0 get user information from access token
In the SessionLoginSample example from the Facebook for Android 3.0 SDK, the LoginActivity returns an access token in the session object.
How do I get user information from this access token?
Do I ...
0
votes
0answers
39 views
Score won't post to Facebook
I'm going through the Facebook game tutorial and am on part 5 - Publish Open Graph Story. This part focuses on posting scores to the users score feed. The problem I'm having is that it executes the ...
1
vote
1answer
87 views
Integrating Facebook into an Android app for advertising via Facebook
I have an existing Android app which I am trying to advertise via Facebook ads. Facebook said I must integrate their library into my app, starting with downloading their SDK.
When I downloaded their ...
0
votes
0answers
13 views
Share user detail with server from android
I have created Facebook App on developers.facebook.com , I have included website, android and iOS details. I have successfully integrate facebook SDK v3 into Android application, Also I have done ...
0
votes
1answer
78 views
Facebook android sdk how to get the number of likes for a given page
I would like to get the number of likes for a given page with its id.
Here is the graph api request I would like to translate with the facebook-android-sdk.
I cannot figure how to make it. I get ...
0
votes
2answers
225 views
Android: Facebook 3.0 Post on friends wall using the FQL request response (As of Apr23,2013)
My app generates custom listview of friends arrange by their birthday. So I have used SELECT name, uid, pic_square, birthday_date FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) ...
0
votes
1answer
59 views
Proper way to create Facebook Session for login?
So, I have a Dialog with a "share" button. When the button is pressed it calls a method that shares the users information if they are already logged in to Facebook. However, if they are not logged ...
0
votes
1answer
90 views
Facebok null GraphObject
I have been stuck with facebook implementation for days. I was getting this error no matter how I tried to post to wall:
Response: {Response: responseCode: 200, graphObject: null, error: ...
0
votes
0answers
39 views
How to receive all friends scores from app using an open graph API?
I'm following the Facebook tutorial on how to implement Facebook into a game app for Android. I'm on the "High Scoreboard" part towards the end of step 1. In this step they provide a way of retrieving ...
-1
votes
0answers
84 views
Facebook Graph API to get all events created by user for android app
i need to develop an android app which has to list all the events of user. Could someone explain how the api should look? and how to set all the permisions? I was reading about those api's and I don't ...
0
votes
2answers
205 views
Stuck on White Screen Appears after Facebook login Android
I'm using Facebook SDK to login to facebook account...
after trying to sign in white screen appears and stuck on it..
this is my code :
`
public class MainActivity extends Activity implements ...
0
votes
1answer
64 views
FQL query error: “An unknown error has occurred.”
I've started facing some problems with Facebook FQL without any change to my code. And they're also getting solved without any change!
I'm receiving this annoying message that has no clear indication ...
1
vote
1answer
114 views
Customize the text in Facebook OAuth Dialog
I am using Facebook Android SDK to implement Facebook Login and access the Facebook Platform APIs from my Android app.
The OAuth Dialog is as follows:
Currently it displays the text: Log in to use ...
0
votes
0answers
100 views
Android Facebook SDK 3.0 Sample implementation
The Problem: I can't implement FB SDK's login samples.
I tried what developers.facebook says but it doesnt work. I change the hash a few times with the different options the site gives but nothing..
...
0
votes
1answer
198 views
Managing Facebook Session in Android App throughout multiple activities with Facebook SDK 3
I have started using Facebook SDK 3.0. I am using LoginButton widget to login into the Facebook. I am referring Scrumptious sample for doing so. In this sample, one Activity(Where session is being ...
1
vote
1answer
69 views
Different facebook apps are using the same key hash
The Android developer documentation contains the following advise on Signing an application:
"In general, the recommended strategy for all developers is to sign all of your applications with the same ...





