How to authenticate with google account via ruby on rails [closed] - ruby-on-rails

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Can you please help me ?
I am new in rails and i want to login with google using rails 3.2.8.
How can i do this?

Try this
http://railscasts.com/episodes/304-omniauth-identity?view=asciicast
Watch Video and try

download this app from here it is for facebook authentication using omniauth-facebook gem.you rather then use omniauth-google gem.generate key secret key for your app and necessary settings on google.
https://github.com/kashiftufail/facebook_login_using_devise_and_omniauth_facebook
Hope you will do

Related

Sending faxes in my rails app [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I build an app in RoR which is on heroku. And I want to send a fax every time an order is taking place. What will be the best option for me?
Thanks
You could use InterFAX or eFaxCorporate. I don't think any of these APIs come pre-integrated with Heroku though. The use of InterFAX from a Ruby environment is documented on this book.

iOS - Reading Facebook Posts in UITableView [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am trying to show a Facebook page posts using UITableView. Is there a way for that in iOS 5 or 6?
You need to get a OAuth Token and get the JSON Feed from the OpenGraph
For the OAuth Token:
https://graph.facebook.com/oauth/access_token?client_id=<client_id here>&client_secret=<client_secret here>&grant_type=client_credentials
and for the feed:
https://graph.facebook.com/<facebook_page_id>/feed/?access_token=<oauth_token>
You get an JSON Array back and can parse it using your favorite JSON Parser.
In Addition you can explore the open graph using this tool:
https://developers.facebook.com/tools/explorer/
Hope that helps. Happy iCoding.

How to start developing with Twitter for Blackberry [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am new to bb app development. Now I'm supposed to develop a Twitter application for blackberry. How do I start my application.. is there any Twitter API for blackberry?
I have created the UI of the login page, but how to start with authenticating username and password? I have registered my app in twitter now I have the consumer key and secret, but I dont know how to use that.
Anyone knows about twitter apps for blackberry or have any sample code for Twitter?
You may use TwitterAPIMe.
You may find how to use the API in the link.
I used it, it's easy and working well with good performance.
PS, you must be RIM4.6 or higher

Creating a stock portfolio in rails [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am new here and new to ruby on rails.
I am trying to create a rails app where users can create their own stock portfolios.
I want to use the yahoo finance gem but i don't know where to start .
I have created the rails login using devise .
Any tutorials out their ?
Thank you
You should prototype this on paper first, make a pretend portfolio on a notepad.
Once you have found what you want to store, create diagram out of it then make your models.

Social Media connect [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am want to add social media connect to my web app which includes twitter, Facebook and Linkedin.
I want to include twitter connect to my site. But I am not getting how to do it. I have implemented the fb connect to my app.
I am also look for good linkedin connect to my site how do I include it. Please let me know
One of the simplest ways to integrate Twitter with your website is by using #anywhere. Take a look at the documentation and see if it seems to be a good fit for your application.

Resources