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
1
vote
1 answer

JavaEE + socialauth library, what to store after login

I am using the socialauth library following this tutorial: https://github.com/3pillarlabs/socialauth/wiki/Getting-Started-with-implementing-SocialAuth Everything works find, I just do not understand where/what to store after the end of step 3. I…
KIC
  • 5,887
  • 7
  • 58
  • 98
1
vote
1 answer

how to implement signout functionality for Facebook integration in social-auth for android

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. class SignUp extends Activity { SocialAuthAdapter adapter; @Override protected void…
Deep Singh
  • 147
  • 1
  • 3
  • 16
1
vote
1 answer

Is there any way to get only "My Contact" from my gmail account using api?

I made the following call to the Contacts API https://www.google.com/m8/feeds/contacts/default/full?alt=json&access_token=<>&max-results=5000&v=3.0 It return a list of all my contact gmail contacts. I want only the Contact that I…
1
vote
1 answer

Social Auth - Android status update returns 403

I have implemented SocialAuth in my Android application. Posting a tweet to Twitter works fine. Updating my status to Facebook using my developer account works fine, how ever with any other account a 403 – Forbidden error is being returned. Do I…
iamanyone
  • 429
  • 2
  • 10
1
vote
2 answers

getting list of friends from facebook

Facebook API does not provide friends list of people using our fb app, according to their developer faq page. But still, websites like nimble and the live example of socialauth are able to get the names of people on our friend list, even those who…
Shabin Muhammed
  • 1,092
  • 2
  • 18
  • 29
1
vote
0 answers

SocialAuthAdapter on Android - limiting the providers on share menu

I am trying to integrate the social auth api for android in onCreate Method : adapter = new SocialAuthAdapter(new ResponseListener()); adapter.addProvider(Provider.TWITTER, R.drawable.twitter); adapter.addProvider(Provider.LINKEDIN,…
sharmacal
  • 457
  • 1
  • 6
  • 25
1
vote
0 answers

Issues accessing socialauth via ajax

I am developing a server side web app using spring socialauth library by 3 pillars lab. When accessing this web app using href in an anchor tag, I am able to invoke the 3rd party application (in my case, facebook) page. But when i tried calling it…
M kapil
  • 21
  • 1
1
vote
1 answer

no package identifier when getting value for resource number 0x00000000

I am new to Android app development. I try to connect my app with facebook using SocialAuth SDK. but am getting a error as "no package identifier when getting value for resource number 0x00000000" and thread id=1: thread exiting with uncaught…
Aravindan K
  • 101
  • 3
  • 18
1
vote
1 answer

Unimplemented WebView method run called from: android.os.Handler.handleCallback(Handler.java:733)

I am new to Android app development. I try to connect facebook using socialauth. I implemented everything as given. When I execute my app, at background it gets green access to facebook and return back to app, but it opens with a blue screen webview…
Aravindan K
  • 101
  • 3
  • 18
1
vote
2 answers

Android facebook integration error : following permission have not been approved

I doing work in social integration project, in that, Facebook integration, in my created app i got following error in image,how to got that permission ? please help me : Error : The following permission have not been approved for use and are not…
Nirav Mehta
  • 1,715
  • 4
  • 23
  • 42
1
vote
1 answer

How to connect to twitter using socialauth in android

I am using 3pillar socialauth to write an app that connect with 3 sites - facebook, twitter and google+. While login with facebook is working perfectly fine I am having issues with twitter. I get the following message -…
Pankaj
  • 327
  • 3
  • 14
1
vote
0 answers

Do I need permissions on Facebook to share using SocialAuth?

So, I'm developing an android application that allows the user to share to facebook. I'm constantly getting the toast from the library of "Message not postedfacebook" once I use the updateStory function. Is this because I need to have the…
1
vote
1 answer

How to share on linkedin and twitter using social auth library

Am developing an application that has the ability to share content on linkedin, facebook and twitter using the socialauth library. It works fine with facebook but it cannot share with twitter and linkedin. I get a warning that "Provider Not…
George J
  • 195
  • 1
  • 4
  • 20
1
vote
0 answers

Can social-auth Android add friends?

I've been messing around with social-auth Android have been referring to the readme and this website. I haven't found a way to request a friend or follow someone via twitter. does social-auth have this functionality?
Codes
  • 195
  • 1
  • 5
  • 15
1
vote
1 answer

how to correctly use AccessGrant to connect to an android socialauth provider

My android app is storing the android socialauth AccessGrant object from a successful socialauth authorization. I'm persisting it in sqlite and am attempting to used that stored AccessGrant object to allow a Service with an AsycTask connect to a…
user3188040
  • 671
  • 9
  • 24