2,611 reputation
118
bio website
location
age
visits member for 9 months
seen 6 hours ago
stats profile views 243

I work at Facebook.


7h
comment Getting nil app icon on ios facebook native dialog
that is not a supported feature.
1d
answered Facebook iOS SDK 3.5 accessToken invalid
1d
comment How to logout facebook user everytime before calling facebook share intent on android
Do you mean logging out the user in the Facebook Android app? You can't do that.
1d
comment Session.isOpened() == true but Session.getAccessToken() == “”
How are you opening the sessions/setting the active session?
1d
comment Facebook SDK 3.0 with old Facebook app version redirects to browser and gets stuck
The SDK should not go out to the Android Browser. What is the url in the browser before it redirects to the fbconnect:// url?
Jun
14
comment Facebook logout after posting iOS- Kiosk App
You can absolutely use the Facebook SDK for this use case. There's an option when you open a Session to not use the Facebook app, and to use the browser (or webview) instead. It also gives you an option to logout (by closing the Session and clearing any cached data).
Jun
14
comment Facebook 3.0.1 Send Request Error Android
Your code does not show how you're calling sendRequest. It seems from the error that you're calling sendRequest before the session is open. Make sure you have a if(session.isOpened()) check before you call sendRequest.
Jun
14
comment What are the reasons that presentShareDialog returns nil?
ahh, I can see the confusion.
Jun
14
comment facebook login issue iOS
The issue is that it's not cached in your app, it's cached in iOS, so your app doesn't even know about it. The only way to know for sure is to fail once, and then reopen the session. This is similar to a scenario where your app may be authorized, but if the user removes your app from Facebook, the next request your app issues will fail, and you have to close the session and reopen it (which will prompt the user again).
Jun
13
answered facebook login issue iOS
Jun
13
comment Facebook android session lifecycle
this is correct.
Jun
13
comment android native app configuration for facebook require activity or fragment
The configuration for login doesn't actually require any class name (try it, you can delete the class name in the app config, and login won't change - it's only for deep links). It's more likely that when you switched from an Activity to a Fragment, you either missed setting the Fragment on the Session's OpenRequest (or LoginButton, if you're using that), or forgot to override the onActivityResult method, which causes the callback to get lost. Please post some code (even if you just copied the tutorials).
Jun
13
comment Post a link to wall of Facebook Page using Facebook sdk 3.1
I don't know, I've never tried it myself.
Jun
13
answered What are the reasons that presentShareDialog returns nil?
Jun
13
comment Getting nil app icon on ios facebook native dialog
I don't know what you mean by a nil app icon. The iOS6 share dialog doesn't display an app icon.
Jun
12
revised What to do if facebook session / token is invalid in my application?
added 1320 characters in body
Jun
12
comment Getting nil app icon on ios facebook native dialog
can you post a screen shot?
Jun
12
comment What are the reasons that presentShareDialog returns nil?
It returns nil if you don't have the correct version of the Facebook app. Are you getting this on a simulator? Unfortunately, you can only test this feature on a device, with the latest Facebook app from the app store.
Jun
12
comment How to show the posts in a facebook group on an android app?
developers.facebook.com/docs/reference/api/group
Jun
12
answered What to do if facebook session / token is invalid in my application?