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
3
votes
1 answer

socialauth - can you use same session across a redirect?

I'm trying to use socialauth to login with google, facebook et al (I'll assume google here) and have a question about how it works. I'm using JSF 2 without Seam. The basic idea is that you: make a few API calls indicating that you want to login…
Oversteer
  • 1,778
  • 1
  • 22
  • 38
2
votes
3 answers

How to redirect to last link after login from google in php?

I am trying to redirect the user to the last link after login through Gmail or Facebook. Here are the four things I tried without success. 1) Using $_SERVER['HTTP_REFERER'] But it redirects me back to Gmail instead of the last link on my site. 2)…
Ninja Turtle
  • 1,293
  • 2
  • 24
  • 50
2
votes
1 answer

Social network login in JSF using SocialAuth

I'm developing a module in JSF 2.2 and socialauth, it contains users authentication through external oAuth providers like Gmail, Hotmail, Yahoo, Twitter, Facebook, LinkedIn, Foursquare, MySpace. I found a sample code for Facebook login and adapted…
Haktan Aydın
  • 581
  • 1
  • 6
  • 21
2
votes
2 answers

Social Auth - Linked In OAuth 2 Not working

When Social Auth 4.6 and LinkedIn OAuth2 Provider, I am getting an error State parameter value does not match with expected value. I am using the following code to connect first time: SocialAuthConfig config =…
Miner
  • 46
  • 3
2
votes
1 answer

Get large friend list profile pictures from LinkedIn using SocialAuth library

I'm currently using the SocialAuth library to log into various social medias in my app, but i've run into an issue with LinkedIn. I can easily get the profile image URL and use it to grab the image and put into an ImageView, but the image i get is…
Moonbloom
  • 7,738
  • 3
  • 26
  • 38
2
votes
0 answers

Android: Cannot get permission to publish_stream on Facebook application using socialauth-android

I created a new application on Facebook for my Android application to share created images on Facebook. I need the permissions of Facebook publish_stream. Facebook has recently changed their criteria to give publish_stream. They now require us to…
2
votes
2 answers

crash due to SocialAuth Library project

I m facing problem while adding social auth library project (of google). there are two jar files used socialauth-2.3 and socialauth-android public void onClick(View v) { // TODO Auto-generated method stub switch (v.getId()) { case…
Maveňツ
  • 1
  • 12
  • 50
  • 89
2
votes
1 answer

SocialAuth 3.2 Twitter Error

I am working on a project that uses the SocialAuth 3.2 Android library to connect to a bunch of social networks. All social networks work except for twitter. When I try to connect to twitter I get the following…
Rarw
  • 7,645
  • 3
  • 28
  • 46
2
votes
4 answers

social auth in android nullpointerexception while signout from facebook

I am using social auth library for sharing and login with social media in android app. I have logged in and authorize successfully with facebook. But when I try to signout app crashed with nullpointer exception adapter.signOut(getActivity(),…
Mihir Shah
  • 1,799
  • 3
  • 29
  • 49
2
votes
1 answer

Extra characters in url after redirect successfully from foursquare using socialauth

I am using socialauth to have login with foursquare , when I do the authentication process I am successfully redirected to the success page but the url contains some extra characters how can I prevent it from coming in url the url looks like …
Wearybands
  • 2,438
  • 8
  • 34
  • 53
2
votes
1 answer

How to get and reuse access token in social auth android?

I am using socialauth android for my app. My requirement is to reuse the access token keys and secret previously stored during the authorisation. I am unable to do it in any possible way, even I googled a lot but could not find any way resusing the…
darc
  • 41
  • 2
2
votes
1 answer

How to solve socialauth-android (by 3pillarlabs) and Google Accounts/Google+ using OAuth2.0

I'm building an Android application where users should be able to login to the application using an email/password combination (no brainer) or via their preferred social network. I've implemented the socialAuth library for Android from 3pillarlabs…
marienke
  • 2,465
  • 4
  • 34
  • 66
2
votes
0 answers

Image Sharing for SocialAuth API

can anyone share an image sharing code for Socialauth Api. I hve tried the code on this http://blog.3pillarglobal.com/part-3-using-socialauth-integrate-twitter-api-android page but its not working. Thanks in advance.
Amir Aslam
  • 383
  • 4
  • 9
2
votes
1 answer

How set extra data in python-social-auth django?

I have a problem, when try to save extra data with pipeline but they do not saved. Here a code: def save_picture(strategy, user, response, details,social_user, is_new=False, *args, **kwargs): if is_new and strategy.backend.name ==…
eirenikos
  • 2,296
  • 25
  • 25
2
votes
1 answer

How to use java socialauth in a stateless environment? (without the need to store SocialAuthManager in session)

I am developing a stateless RESTFul API based on JavaEE 6 and it is important not to store anything in the session. I am using socialauth java based social auth provider. I would like to know if there is a way to rebuid SocialAuthManager after a…
esteveavi
  • 21
  • 2
1 2
3
10 11