Questions tagged [facebook-sdk-3.14.x]

45 questions
38
votes
12 answers

Android Studio 0.8.1 - how to use Facebook SDK?

I tried via import module but I'm always getting Error:(13, 0) Could not find property 'ANDROID_BUILD_MIN_SDK_VERSION' on project ':facebook'. I didn't find a tutorial how to use the Facebook SDK with the latest Android Studio...
swalkner
  • 16,679
  • 31
  • 123
  • 210
16
votes
2 answers

A library uses the same package as this project after importing Facebook SDK

This is the error-message I get after that I imported the Facebook SDK (3.15.0) into Android Studio (0.8.2). Error:Execution failed for task ':app:processDebugResources'. Error: A library uses the same package as this project: com.aaa.bbb.test …
DMT82
  • 871
  • 2
  • 14
  • 32
9
votes
3 answers

Facebook shareDialog doesn't show anything

I'm trying to share some content's on facebook but i have a lot of problems. i've add the correct keyhash, and created the app on facebook and put it live. When i try to share something it seems good as you can see: But after i've clicked on post…
Giacomo De Bacco
  • 723
  • 6
  • 26
8
votes
2 answers

Sending a link with Facebook Message Dialog ignoring all params

I am trying to share/send a link to friends via the new Facebook Message Dialog which was implemented in v2.0. I have been following the direction from the docs: https://developers.facebook.com/docs/ios/share#message-dialog-getting-started and…
8
votes
3 answers

Share Image and Text to Facebook on android

What is the correct way to share an image and text to Facebook in android? e.g. picture with pre-populated text. I realise that this is not possible from the native Android share intent as described here. As it can only take an image or a link not…
Iain Smith
  • 9,230
  • 4
  • 50
  • 61
5
votes
1 answer

How to change the language of com.facebook.widget.LoginButton on Android

How can I change the language which the com.facebook.widget's use for display the labels? I am using the com.facebook.widget.LoginButton and the system language of my Android device is set to german but however the LoginButton displays the text "Log…
user3677546
4
votes
0 answers

javax.net.ssl.SSLException with Facebook SDK, Android

In my device default facebook application is working fine, but when i try to login with facebook from my application it gives me below error. javax.net.ssl.SSLException: SSL handshake returned an invalid session. Socket state (closed, connected,…
Smeet
  • 4,036
  • 1
  • 36
  • 47
4
votes
1 answer

App crashed on IOS 7.0 works fine on 7.1

I have built an app that works well on IOS 7.1 but when installed on IOS 7.0 it crashes with the following logs: dyld: lazy symbol binding failed: Symbol not found: _OSAtomicDecrement32 Referenced from:…
Jeremy Huang
  • 211
  • 6
  • 13
4
votes
4 answers

How to get unread messages using FQL?

I am trying to get the body and the sender of all unread inbox . To get all conversation's threads with unread messages I used this query: SELECT thread_id from unified_thread WHERE folder='inbox' AND unread=1 to get the unread message of a thread I…
Dany19
  • 551
  • 9
  • 26
4
votes
1 answer

Parse Facebook login fails with error code 251

I'm trying to use Parse Facebook & Twitter login in my app but the problem is I can't get the Facebook login to work. I'm getting the following error message: Error Domain=Parse Code=251 "The operation couldn’t be completed. (Parse error 251.)"…
4
votes
1 answer

iOS Facebook sdk 3.14 - can't get friends list anymore?

I'm using the newest Facebook SDK and it seems I can't get the friends list at all. I tried using the Graph API by calling /me/friends and by using the requestForMyFriends but none of them returned anything no matter which permissions I asked…
3
votes
4 answers

Facebook doesn't logout completely-ios

while i was trying to integrate fbsdk(facebook) to my app ,it's login session working perfectly.But while i log out from mp app,it does show log out actionsheet and i can logout it easily.But when i try to login again to the facebook it goes…
Abdul Nouzil
  • 373
  • 1
  • 3
  • 9
3
votes
3 answers

How my app can know when user logout from its Android native Facebook app?

How my app can know when user logout from its native Facebook app ? I am using below code for Logging out from Facebook in my app. And it is working fine. class LogoutTask extends AsyncTask { @Override protected Void…
3
votes
3 answers

Android + Facebook SDK : "Failed to authenticate the application because of app name mismatch."

While trying to use Facebook SDK on my Android App, I got this error: "Failed to authenticate the application because of app name mismatch. Please check the application name configured by the dialog." After reading many posts on this subject, from…
disfe.arp
  • 31
  • 1
  • 3
2
votes
0 answers

Facebook OpenGraphActionDialog ignores the "is user generated image" flag

I'm currently trying to create a FacebookDialog that posts with a local image. I am able to create the dialog with the image and post it, but the "user generated" flag appears to be ignored. What I'm getting is this: ...when it should look like…
1
2 3