1
vote
2answers
322 views

best codeigniter 2.1 authentication library with social networking site integration

What's the best codeigniter authentication library out there that supports social networking integration such as facebook, twitter, linkedin, google+ etc? Currently I'm learning a3m which is ok, but ...
0
votes
0answers
73 views

linking user accounts to their twitter/facebook/etc accounts

I have an existing rails app which uses 'devise' for authentication. I would like user's to be able to link their twitter and facebook accounts to their account on my site, so that my application can ...
0
votes
1answer
73 views

Oauth - Merging Accounts-Do Twitter and Facebook use same Oauth Id?

I am building a small app that uses Facebook and Twitter credentials to login/register to use it. I was wondering if once the user has completed registration if there are any known strategies to ...
1
vote
2answers
97 views

How can I access multiple API´s (Facebook and Twitter) on one user?

I am always reading about Facebook and Twitter logins for someones website. The integration using one of theses services is okay, but my questions is how can I access both API“s for one user. ...
0
votes
2answers
208 views

OpenId: login on webpage with Facebook and Twitter

I have implemented with GWT an OpenId authentication service that works for Google and Yahoo. Users of both platforms are allowed to login with their account to my website, and we can retrieve some ...
0
votes
2answers
100 views

Twitter API OAuth session expires, Facebook's doesn't

I use the Twitter Anywhere API and OAuth to authenticate users on my website. The cookie with the accessToken expires after two hours, which is why the user needs to login and connect to Twitter ...
1
vote
1answer
99 views

Why new password is required when sites using Google, Facebook or Twitter connect

Few sites I've come across using either Google, Facebook or Twitter connect for login. Still they are asking for new password creation. Ex: http://setapp.me/ Why user need to setup another password ...
0
votes
0answers
784 views

facebook , tiwtter and msn client for android app

Recently , i try to build an an android app that contain three client in the same time : facebook , twitter and Msn ( windows masseneger ), i tried a lot and a lot of reseach , i learned haw to use ...
0
votes
2answers
222 views

SocialLib error creating TwitterConnector

Here is the code, what's relevant. I have keys, secret and callback variables defined. I'm using these library versions: SocialLibBeta2_2.jar, signpost-core-1.2.1.2.jar, ...
1
vote
1answer
433 views

FACEBOOK/TWITTER login no longer work on Android app after updating Facebook APK (login disappears immediately!)

I have an App that allows users to log in with their twitter, facebook, and gmail so I can send them updates to each. I just downloaded the newest facebook APK and now I every time I click on the ...
0
votes
1answer
38 views

distributing social login applications appKeys [closed]

I'm developing a commenting application where users can comment with their Facebook or Twitter accounts. My question is if i can distribute this projects with a universal Facebook/Twitter appKeys, Or ...
1
vote
3answers
884 views

Can access token be longer than 255 characters?

When allowing login by OAuth (such as OpenID, Facebook, Twitter, etc), we save the access token given by the Oath provider in mysql database for future authentication. In some tutorials, the column ...
0
votes
1answer
703 views

Check if Twitter, Facebook, LinkedIn username(email) already exists

In my website I want to check if emailId the user types in is associated with any of Twitter/Facebook/LinkedIn. Searching on got me in touch with this link. I found accepted answer would help me for ...
1
vote
1answer
487 views

how to automatically post status on twitter

Does anyone know how to post automatically on twitter like Facebook has... In facebook, there is API/SDK that allows PHP to post status to visitors wall if they allow my application to do that, but ...
1
vote
1answer
129 views

OAuth - Binding local user to 3rd party

I'm working on a mobile application, in which, the user can go for Facebook, Twitter or Foursquare authorization (via OAuth) rather than creating a new account and password. The problem is, I'm not ...
0
votes
0answers
123 views

Authenticate to multiple services and social networks

Is it possible, with the current web/oauth technologies, to create a web page, that, when visited by a user, would check all of his auto-login data (for example cookies to Twitter, Facebook and ...
0
votes
1answer
253 views

Twitter OAuth library for Facebook Connect functionality for iPhone App

I'm looking for a library that allows me to authenticate via Twitter's OAuth schema that looks and works similar to Facebook Connect for iPhone. Searching on here and Google I found some examples but ...
1
vote
1answer
282 views

Run function on Login Success MGTwitterEngine ala FBConnect

I'm working with the engine for the first time and am fairly new to iOS development. I' m curious though if there's a way to call a function after I log in successfully? I can't seem to get it to work ...
1
vote
1answer
171 views

how to GET and POST on Twitter or facebook in ruby on rails using access tokens

I am using omniauth to authenticate a user via twitter, now as mentioned by twitter API REST architecture, I need to send a GET or POST request to Twitter twitter api documentation ! I am not able to ...
4
votes
2answers
1k views

How to add Facebook/Twitter/LinkedIn login to Google App Engine project?

I've searched for solutions, but everything I can find seems mostly outdated. We're using the Python API for GAE and creating login urls in the following manner: ...
7
votes
2answers
1k views

best practice for storing oauth AND local authentication methods?

If I were to run a service that allowed users to authenticate via "local" username/password combinations and ALSO any number of OAuth services - what might that user data model look like? Usually, if ...
0
votes
1answer
131 views

Sharing With Twitter and Facebook Using External Application

I would like to share some text and an image from my web application to a user of my web application's facebook and twitter pages. What is the best approach to do this? So I need to have my user ...
0
votes
1answer
115 views

Asking user to create a direct account after registering from Facebook Connect / Twitter OAuth

We're planning to have a sign-up page that allows users to use Facebook Connect or Twitter to sign in. After they validate their account and we fetch their information from their parent site, it is an ...
1
vote
2answers
371 views

Handling users that exist, but try to login through Facebook OAuth / etc

I've got a decent set of existing users on my website who login via their emailaddress as their username. I'm setting up Facebook OAuth mechanism to allow new users to sign up more conveniently, but ...
0
votes
1answer
130 views

Dual posting (facebook & twitter) from facebook app

I'm working on a facebook app for someone and they would like the ability to edit photos on both the users facebook & twitter profiles (kinda similar to twibbons). This all needs to be done from ...
2
votes
3answers
1k views

Rails 3 App: for oAuth-only sign-in using Facebook and Twitter, should I use Devise/OmniAuth, or just OmniAuth?

I'm creating a new Rails 3 app and I want to allow users to sign-in using their Facebook or Twitter credentials. I don't know whether I should implement this using Devise and OmniAuth, or just ...
3
votes
1answer
83 views

Logging in with different services

I'm looking at offering four log in options on a site Normal registration with the site using email address and password Facebook Google Twitter If a user with the email address ...
0
votes
0answers
499 views

register or login with other id

More and more I come across sites that allow users to either create a profile or register using one of the existing accounts, such as facebook, twitter, Google, Yahoo! or other. For a site that needs ...
1
vote
2answers
1k views

Multi authorization with CodeIgniter

I have my own CodeIgniter webapp. I want to add to my site the multi-authorization from Facebook, Google, Twitter and OpenID sites. (like here - http://stackoverflow.com/users/login) Is it possible ...