All Projects → jessfraz → Hashtag Pull

jessfraz / Hashtag Pull

Licence: mit
Get all twitter, vine, and instagram posts with a certain hashtag, print the feed, and save to a database for future use. (old & depreciated)

NOTE: As of a long time ago, I have not been keeping up with any of the API changes. If you want to maintain this, go ahead. But currently it is not and has not been kept up to date with the APIs.

Twitter, Vine, and Instagram Hashtag Feed

Get all Twitter and Vine posts with a certain hashtag, print the feed, and save to a database for future use.

How it works

  • Searches Twitter for images with the hashtag and saves them to the database.
  • Searches Twitter for links with the hashtag and a link containing vine.co, parses the link's contents for the twitter:player:stream and twitter:image meta properties and saves the mp4 video link and video placeholder to the database.
  • Only performs the above API calls every 2 minutes to avoid rate limiting.
  • Shows the feed of the pictures and videos from the database, and refreshes the feed every five minutes.

Configurations

Create a Twitter application

  1. Sign in with Twitter Developer
  2. Hover over your name in the top right corner then click "My Applications"
  3. Create a New Application. Enter a name (this is for your reference), a description (again for your reference), and your site's URL. The callback URL is a moot point for the use of the application so it can be left blank.
  4. Create my Access Token (this is a button, click it)
  5. View the details tab. Copy and paste the correlating keys and secrets into config.php.

Create an Instagram application

  1. Sign in with Instagram Developer
  2. Click "Register Your Application" (this is a button, click it).
  3. Create a New Application. Enter a name (this is for your reference), a description (again for your reference), your site's URL, and the url for the directory instagram where your app will live for the redirect uri.
  4. Create my Access Token (this is a button, click it)
  5. View the details tab. Copy and paste the correlating keys and secrets into config.php.
  6. Upload the app to your sever and navigate to the instagram directory from your browser.
  7. Authenticate your app.
  8. Copy and paste the value for the access token into the access token for instagram field in config.php.

Recommendations

Since this is using a work around for what will eventually be replaced by the Vine API, I would suggest using a cron job for the update() function and only calling from the database when a visitor hits the server. This should reduce load time and make sure the server is not over worked.

Build Instructions

This project uses Grunt to automate build tasks (eg. compile less and minimize js).

  • Install Node.js
  • Install grunt-cli: npm install -g grunt-cli
  • Install dev dependencies: npm install
  • Run grunt to compile, or grunt server to start a live development environment.

Analytics

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].