TweetWorld
An application used to filter data form Twitter based on user preference, built with React, Redux, JavaScript, and CSS.
(only necessary if incomplete)
| #Add this routes.rb file | |
| # get '/oauth', to: 'trello_sessions#new' | |
| # get '/oauth/authorize', to: 'trello_sessions#authorize', as:'oauth_authorize' | |
| class TrelloSessionsController < ApplicationController | |
| def new | |
| request_token = trello_consumer.get_request_token(:oauth_callback => oauth_authorize_url) | |
| session[:token] = request_token.token | |
| session[:token_secret] = request_token.secret |