/social-wall

Social Wall: May 2014 Dojo

Primary LanguageCSS

May 2014 Dojo: Building a Social Wall with APIs

The goal of this dojo is to become familiar with using APIs to extract information and iterate on a project using the Agile workflow. We'll be getting data from Twitter, Foursquare, and Instagram.

Requirements

Be sure to have NodeJS installed on your machine.

If you want to work with Sass, be sure to have that and Compass installed, as well.

If you want to be able to watch for changes, have Grunt installed.

Setup

First, fork this repository and clone it to your local computer.

$ git clone git@github.com:<YOUR USERNAME>/social-wall.git

On your local copy, copy /base/ as your group's name.

$ cp -rf ./base ./<YOUR GROUP NAME>

Now, you need to install dependencies:

$ cd ./<YOUR GROUP NAME>
$ npm install
$ bower install

API Keys

In order to access the three APIs, you'll need to register an application on each.

Since we don't want to share our tokens with each other, you need to create a file named env.json.

$ touch env.json

Twitter

Create an app and copy the keys.

  • Twitter Developer Center
  • Create a new app called [YOUR GROUP] Social Wall
  • Give it any ordinary website
  • When the app is created, go to the API Keys tab.
  • At the bottom of the window, click Generate my Access Token.

Now copy your API Key, API Secret, Access Token, and Access Token Secret into the env.json file like this:

{
    "twitter_consumer_key": "REPLACE_THIS",
    "twitter_consumer_secret": "REPLACE_THIS",
    "twitter_access_token": "REPLACE_THIS",
    "twitter_access_token_secret": "REPLACE_THIS",
    ...
}

Foursquare

Create an app and copy the keys.

Now copy the Client ID and Client Secret at the end of the env.json file like this:

{
    ...
    "foursquare_clientId" : "REPLACE_THIS",
    "foursquare_clientSecret" : "REPLACE_THIS",
}

Instagram

Create an app and copy the keys.

  • Instagram Developer Center
  • Click Manage Clients and Register a New Client
  • Create a new client called [YOUR GROUP] Social Wall
  • Fill in any website/callback URLs as necessary

Now copy the Client ID and Client Secret at the end of the env.json file like this:

{
    "instagram_client_id": "REPLACE_THIS",
    "instagram_client_secret": "REPLACE_THIS"
}

Get the Data

You now have your keys set. Data will be parsed through our Node application using three routes: /tweets, /foursquare, and /instagram.

To alter what each route does, edit the routes/index.js file.

Use each API's node module documentation to learn what you can do:

Show the Data

Each route above is hit with an AJAX call after the page has been loaded. The front-end script is public/js/main.js.

As you alter each route's particular query, you can play with and abstract the data inside the JS file.

Style the Data

Work with the view file in views/index.jade (written in Jade) and the CSS (either public/css/style.css or public/style/scss) to customize how your Social Wall looks.

View your Wall

In a commmand line client, navigate to your group's folder and run:

$ node app

Then, visit http://localhost:3000 in your browser to view the Social Wall.

Sass/Watch for Changes

Optionally, you can have Sass/Compass compile your CSS and watch for changes to reload your browser window:

$ grunt watch