Questions tagged [facebook-sdk-3.0]

The Facebook SDK version 3.0 released on 07/08/2012

Facebook SDK makes it easier and faster to develop Facebook-integrated apps

Here’s a rundown of the key updates:

  1. Updated native UI components and added internationalization support
  2. Refined and simplified core APIs, including session and request objects
  3. Bug fixes and increased stability
386 questions
0
votes
0 answers

facebook graph api returns blank data

I'm using the facebook sdk api, in a class to return a public facebook pages posts. But it returns blank, it doesn't throw an error. var client = new FacebookClient(); dynamic result = client.Get("oauth/access_token", new { …
PeteTheGreek
  • 729
  • 2
  • 21
  • 41
0
votes
2 answers

com.facebook.http.protocol.ApiException: remote_app_id does not match stored id with Facebook SDK 3.5

I am trying to make use of Facebook SDK 3.5 to authenticate users for my android applicaiton following the link, https://developers.facebook.com/docs/android/getting-started/facebook-sdk-for-android/. I am able to login to my application using…
Kaps
  • 2,345
  • 2
  • 26
  • 37
0
votes
3 answers

Facebook SDK login issue on iPhone

I am trying to integrate the Facebook SDK into my application, and it works in my simulator perfectly. When I install it onto my iPhone and try running it, it shows me an alert, which states, "myapp needs to access your profile, friendlist, etc",…
KSR
  • 99
  • 1
  • 12
0
votes
1 answer

Android still: remote_app_id does not match stored id

Sorry make more 1 post about this, but the existent ones didnt help my case. I know it must be something simple but I really cant find the mistake. I'am trying connect my android app in facebook unsing facebook sdk but got error: remote_app_id does…
0
votes
1 answer

println needs a message with Facebook SDK

After integrating my app with Facebook SDK to measure Facebook Mobile Ad results, some users are getting this error: java.lang.NullPointerException: println needs a message at android.util.Log.println_native(Native Method) at…
Art
  • 276
  • 1
  • 2
  • 17
0
votes
2 answers

Facebook SDK takes over "$" from jQuery - how to stop that?

I'm using both the Facebook SDK and jQuery... for some reason, with the Facebook SDK loading, $ no longer works as the jQuery object. All my jQuery calls still work but I have to use jQuery instead of $... see below for an example. I also have other…
Eric
  • 5,104
  • 10
  • 41
  • 70
0
votes
2 answers

Facebook SDK: Access token

I'd like to get an access token without user login. Standard way is that the user logs in and gets an access token. But I need the access token to view events of an official page. When I try without access token, the Graph API gives me the following…
0
votes
1 answer

How to create just an authentication with facebook sdk in iOS?

In my iOS app I just want to create a login button and when this button is pressed, the user must login using his own facebook account. I don't want to use other facebook features after this, only authenticate the user's account information. Thanks!
0
votes
2 answers

Facebook SDK 3 for Android - Login using facebook app

Now that I added a facebook LoginButton in my app to allow login with Facebook. The 'default' behavior is like this (I didn't do much modifications): Scenario (A) If the user has the official facebook app installed, it will call the app, login…
Priere Law
  • 113
  • 1
  • 9
0
votes
1 answer

Details of some facebook friends not coming in facebook sdk

In my app I am using facebook sdk to retrieve friend's b'day, location, likes, profile picture and so on. But in some case I am not able to getting some friends b'day, location, and likes. Only name and profile picture I am getting. I can see those…
0
votes
2 answers

Facebook sdk 3.0 where set the permision?

my code work fine to get basic user information. But now I need the email of the user. I need to set the permision "email" on the opened session. but i don't know where... In open, ito don't work. this is the full code of the activity public class…
Lele
  • 703
  • 3
  • 15
  • 34
0
votes
0 answers

Facebook LoginButton inside Dialog

I'm working with Facebook SDK. I'm adding Facebook LoginButton inside a Dialog, but when I click it, my request doesn't work. public class StartsFragment extends Fragment { ClassicButton classicButton; Dialog dialog; @Override public View…
0
votes
1 answer

Android: Concept behind KeyHash of Facebook SDK?

I am using FacebookSDK and following all steps to generate a new keyhash, keyhash generated using debug keystore is working like a charm but keyhash generated using our own couple of keystores is not working, then I tried the function given in…
Hammad Tariq
  • 1,523
  • 3
  • 14
  • 29
0
votes
1 answer

Session state CLOSED_LOGIN_FAILED

I'm working on facebook android sdk. I'm getting the hash key using following code .Now I'm getting error Session state CLOSED_LOGIN_FAILED after login to Facebook. Ref : if(session.isOpen()), facebook login on android always returning false try { …
Kirit Vaghela
  • 12,572
  • 4
  • 76
  • 80
0
votes
1 answer

Facebook SDK: User authorization and OAuth Error

I'm working on connection of PHP and Facebook SDK for posting things on page's wall. I was searching for some tutorial explaining all things from zero, but I didn't find it, so I started working by pieces. I came to two things. First one is this…
user1257255
  • 1,161
  • 8
  • 26
  • 55