Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
Using the twitter API on Android
0
votes
1answer
52 views
Facebook share can't get the text
I want to make tweet/share buttons for gamers. They will make them able to write some tweets or share the gained score in the wall.
I found this code:
String shareBody = "Share text";
Intent ...
0
votes
1answer
224 views
Allow user to sign in with Facebook, Twitter, Gmail Account in android app
I want my app to have Sign In with Facebook or Twitter or Gmail. My app will not post on theire respective account, just a way of authorization or user creation for my app.
Is there any easy library ...
0
votes
1answer
559 views
Facebook, Twitter and Gmail Integration in Android App
I have to share a link to facebook, twitter and gmail. I have implemented facebook integration using Facebook Sdk in my Android app, thus I am able to share my link to facebook. But if I am following ...
0
votes
0answers
74 views
Open Facebook help center on button click
I am using following code to open facebook wall
String uri = "facebook://facebook.com/wall";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
startActivity(intent);
It is working ...