Questions tagged [socialauth]

Java Library for authentication, getting profile, contacts and updating status on Google, Yahoo, Facebook, Twitter, LinkedIn, and many more providers

SocialAuth is a Java library (.NET port & Android version available) for you if your web application requires:

  1. Authenticating users through external oAuth providers like Gmail, Hotmail, Yahoo, Twitter, Facebook, LinkedIn, Foursquare, MySpace, Salesforce, Yammer as well as through OpenID providers like myopenid.com.

  2. Easy user registration. All you need to do is create a page where users can click on buttons for the above providers or other supported providers. Just call SocialAuth and you can get all their profile details.

  3. Importing contacts from Google, Yahoo or Hotmail. Support for importing friends from Facebook, followers from Twitter and contacts from LinkedIn is available, but currently Facebook, Twitter and LinkedIn do not provide email addresses. UPDATE: Hotmail has stopped providing email addresses.

155 questions
0
votes
2 answers

how to store access token for facebook in social auth

I am using social auth for integration of social app like facebook, google and many more. I successfully authorized and access token is printed in logcat but i want to store them for send to api. class SignUp extends Activity { SocialAuthAdapter…
Deep Singh
  • 147
  • 1
  • 3
  • 16
0
votes
1 answer

Is it possible to get large Linkedin profile pic URL?

I'm developing a LinkedIn social login for Android app. After the authentication, I'm getting the profile image URL. But it was too small (w=80px * h=80px). Has there any way to get large image?
Arvin Jayanake
  • 1,475
  • 3
  • 14
  • 26
0
votes
0 answers

SocialAuthException: verification code is null

I'm trying to authorize using socialauth and facebook apps. I've created an application there, got App ID and App Secret. Then I set website with site URL : http://localhost:8080/pmc-web/. In my application in the last line I've got…
lapots
  • 12,553
  • 32
  • 121
  • 242
0
votes
1 answer

Displaying profile details using SocialAuth api

I have a project which I found here. Its social connect api which is common to connect our app with social networking apps. The project works fine. All I need is to display the user profile details in the log cat. I tried the following code which…
gautam joshi
  • 131
  • 1
  • 2
  • 11
0
votes
1 answer

How to open facebook oauth page as a popup window using socialauth

I am using socialauth to login via facebook in my jsf application. It works fine. If i click a jsf commandlink's action method i am connecting to facebook. like below public void socialConnect(){ SocialAuthConfig config =…
Ramakrishna
  • 426
  • 7
  • 26
0
votes
1 answer

Google+ Know if a user like my fanpage

I actually use the Google "HTML" API for my webbapp. The user is already login with Google API and I want to know if he like my G+ page for show more information. I did not find how I could do that. It is possible ? Thank you in advance :)
0
votes
1 answer

How to set permissions to facebook properly with socialauth library?

I'm trying to limit the permissions to facebook. Here is what i called, but the permission are still the same (default - birthday, profile, post etc.). I only need post…
Tazz
  • 781
  • 1
  • 8
  • 23
0
votes
1 answer

Facebook, Twitter & Google integration using socialauth

I am building an android app that connects to facebook, twitter and google for user logins. I am getting the following error - org.brickred.socialauth.exception.SocialAuthException: Unable to retrieve the access token. Status: 400. Could not connect…
Pankaj
  • 327
  • 3
  • 14
0
votes
1 answer

add option to login using twitter, facebook and google using socialauth on android app

I am building an app that connects to a website to fetch data. A login screen is provided that gives the option of logging in using the site username and password or using social apps like facebook, twitter and google. The buttons for which are…
Pankaj
  • 327
  • 3
  • 14
0
votes
1 answer

session.setAttribute("authManager", manager) throws a NotSerializableException

I'm trying to use SocialAuth and i'm setting it up according to this guide: https://github.com/3pillarlabs/socialauth/wiki/Getting-Started-with-implementing-SocialAuth It goes well, except for the part session.setAttribute("authManager", manager);…
user717572
  • 3,626
  • 7
  • 35
  • 60
0
votes
1 answer

ImageView get blanked after loading from Facebook using social-auth android

I am trying to get user profile photo from Facebook using social-auth android library. I am logged in successfully, I get user info after logged in onComplete of ResponseListener I get the user profile image url but when I set it to ImageView my…
waqas
  • 342
  • 1
  • 3
  • 17
0
votes
1 answer

JSF Login with Facebook (SocialAuth) and keeping Session alive

I've been stuck on this issue for quite a while, and I've re-formulated my question a few times. I'll be explicit with this one, providing the implementation below: index.xhtml, the short version. ...
Georgian
  • 8,795
  • 8
  • 46
  • 87
0
votes
2 answers

Socialauth fb access token after login

I have logged in to facebook from my server app and I can get my profile information and contacts etc. However how can I use this to get the accesstoken that I could use for restfb? Or is there way in socialauth that I can execute FQL, or read the…
user1089599
  • 303
  • 6
  • 20
0
votes
0 answers

how to get facebook friend full profile with email, using socialauth with extended permissions?

problem is what I can not fetch friends full profile with email usinq SocialAuth or facebook4j. How to set permissions which can allow read contacts full profile graph.facebook.com.custom_permissions =…
Armen Arzumanyan
  • 1,939
  • 3
  • 30
  • 56
0
votes
1 answer

how to use the api() method of socialauth-android Library?

The api method of social auth library contains below parameter. api(final String url, final String methodType, final Map params, final Map headerParams, final String body) Please give me an example for sing this method. Thanks in advance.