php - facebook quick login - facebook

I am trying to price up a quote and one thing on there is a facebook 'quick' login on the members area of the site in question. I think it is like open id. Is there any tutorials that anyone know of to accomplish this?

I guess there should be a fair number of tutorials out there:
How to Authenticate Users With Facebook Connect
The Facebook PHP-SDK has a nice example that could be used (with some work) to achieve what you want.
I've written a tutorial about the Registration Plugin (one of the flows) if you are interested.

There are many tutorial which will be helpful in Login with Facebook as well as you can login with multipal sites.
You can use PHP OAuth API: Authorize and access APIs using OAuth
written by Manuel Lemos. It provides built-in support for OAuth servers of Bitbucket, Box.net, Disqus, Dropbox, Eventful, Facebook, Fitbit, Flickr, Foursquare, github, Google, Instagram, LinkedIn, Microsoft, RightSignature, Salesforce, Scoop.it, StockTwits, SurveyMonkey, Tumblr, Twitter, XING and Yahoo.
Also
http://www.9lessons.info/2011/02/login-with-facebook-and-twitter.html
2.http://www.a2zwebhelp.com/login-with-facebook
3.http://runnable.com/UfwdES1fQz9uAAAh/simple-facebook-connect-php-example

Related

Getting posts (feeds) from Facebook, Twitter, Youtube, Google+, Instagram using their APIs

Can I get posts with likes and other information from public profile of any user at Facebook, Twitter, Google+, Youtube and Instagram using their APIs, if I'm not logged in at any of these services? I need to use it developing PHP/JavaScript application.
Thanks in advance.
Yes, you can. But there is one condition, the profile you're accessing must be public. Also one has his own API's so it can get a little tricky. I think you don't even need PHP because the APIs from google & facebook come in JS.
A tip that might help you. Try firebase. Firebase is a framework that makes client-side development easier. You can include Google APIs & facebook APIs.
I'm a native Spanish speaker so I'm sorry for my English. Anyway, check firebase. It should help.

How to configure Facebook + Oauth module in drupal 7

I am looking for a way to configure Facebook + Oauth module in Drupal 7, as i am working to allow users to log-in into my site using their Facebook user/pass and at the same time i would like to save their Facebook details in my Database. I have been looking for a tutorial or a step by step process to configure these modules.
Please help me. Once i manage to do this, i am going to create article explaining this process.
Thanks in advance.
You are looking for the module http://drupal.org/project/fb
This set of modules turns Drupal into a platform for developing
Facebook Applications. This allows you to embed your content and
features within facebook, or allow facebook users onto your site via
Facebook Connect.
With Drupal for Facebook, you can harness all the power of Drupal in
you Facebook App. If you already have content in Drupal, you can
expose it on Facebook.
Hope this module will full fill all your needs.
I've made several sites with that kind of functionality, and I always end up using the Facebook Oauth module instead of Drupal for Facebook:
http://drupal.org/project/fboauth
The FB OAuth module allows you to integrate Facebook login so much more quickly and easily than Drupal for Facebook. Also, you can map users' fields to Facebook data sources - which probably fits your intended use of their Facebook details.

facebook wall post from wordpress

How to post on facebook account wall when any blog post made from wordpress.
I allready tried with various wordpress plugin like "wordbook", "wordbooker" etc but none of them working fine........ any idea or alternative way?
Use the Twitter Tools plugin and then link your twitter account to your Facebook account. I use it all the time, plus you get the added benefit of Twitter.
I'm writing a plugin for that matter, you can check out the development version right over here: http://kovshenin.com/public/facebook-feeder-alpha.tar.gz
It doesn't have a funky user interface, but it does post stuff to Facebook assuming you have a facebook developer account and a facebook app registered. Look at the posts on my Facebook profile: http://facebook.com/kovshenin (ones marked via kovshenin.com) - they're generated via this plugins.
P.S. It doesn't to that automatically, but you can send it to FB when the post is published. Shouldn't require much time to automate it, but I'd like to customize things before sending anything anywhere.
Hope this helps. Cheers.
P.S. PHP programming skills required to use this plugin.

How much information can I access with facebook connect?

My google skills have failed.
My interest is how much user information I can access when having users connect to my website through. Comments, shared links, uploaded photos, data from other facebook applications used by the user?
Have a look at the Graph API ..or the old REST API for an idea of what you can access via Facebook APIs.
There's a good tutorial here: Facebook Connect Tutorial. I believe this article is using the REST API and the Javascript SDK for single sign on.

Can I use the facebook credentials to for users to access my site?

I'm starting to work on a site that will be strongly connected to a corresponding Facebook app. I want the contents to be free for all to view, but only registered users will be able to edit it (quite similar to serverfault, actually).
Since I think that most of my users will be logged in to facebook, I would really like to use their facebook credentials as to login to my site - the same way Open-Id registration works here.
Can this be done?
Thanks,
Udi Pasmon
Yes, this is one of the things provided by Facebook Connect. There is a wiki full of documentation - start at "Authenticating Users with Facebook Connect".