Telmo Vaz
Telmo Vaz

Reputation: 199

Associate facebook API with Android

I'm having trouble to work with facebook API within my android app.

I have a login button on my app. And I wish that the user clicks the login button and associate with a facebook account. However, I'd like to do it without the facebook predefined design.

I'm having a big trouble understanding the facebook API, I would love some help.

All documentation I find on the net is not that clear to me. Thank you very much.

Upvotes: 0

Views: 69

Answers (1)

Val
Val

Reputation: 4376

I used this one in my project link.

It's very simple and useful.

Example to get profile you need to write:

mSimpleFacebook.getProfile(new OnProfileRequestAdapter()
{
    @Override
    public void onComplete(Profile profile)
    {
        String id = profile.getId();
        String firstName = profile.getFirstName();
        String birthday = profile.getBirthday();
        String email = profile.getEmail();
        String bio = profile.getBio();
        // ... and many more properties of profile ...
    }
});

Good luck!

Upvotes: 1

Related Questions