• This repository has been archived on 28/Nov/2017
  • Stars
    star
    100
  • Rank 340,703 (Top 7 %)
  • Language
    JavaScript
  • License
    The Unlicense
  • Created over 12 years ago
  • Updated about 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Access public YouTube data feeds from your Node.js apps

youtube-feeds

Access public YouTube API feeds from your Node.js apps

Build Status

DEPRECATED

This module relies heavily on YouTube Data API v2 which was deprecated on April 20th 2015 to be replaced by version 3 of their API. The code is not being maintained anymore.

It is recommended for all users to switch to a YouTube module with API v3 support.

See the Wiki for a working example: https://github.com/fvdm/nodejs-youtube/wiki

Installation

Stable: npm install youtube-feeds

Develop: npm install fvdm/youtube-feeds#develop

Usage

// load the module
var youtube = require('youtube-feeds')

// search parkour videos
youtube.feeds.videos( {q: 'parkour'}, console.log )

Configuration

param type default description
httpProtocol string http Which HTTP protocol to use
timeout integer 30000 Request wait timeout in ms
developerKey string Your YouTube developer key

developerKey is required for some methods, ie. user.activity. You can also temporarily override the global setting with the key property in a method's vars.

Example:

var youtube = require ('youtube-feeds');
youtube.httpProtocol = 'https';
youtube.feeds.videos ({q: 'keywords'}, callback);

Callbacks

Each method takes a callback function as last parameter. When everything seems alright err is null, otherwise err will be instanceof Error for tracing.

function (err, data) {
	if (err) {
		console.log (err);
	} else {
		console.log (data);
	}
}

Error Properties

property type description
err.message string the error message
err.stack string stack trace
err.origin string Context; api, method, request
err.details mixed API response or other information

Error Messages

message origin description
invalid response api API response can't be parsed
not json api Expected JSON, received something else
not found method Requested data was not found
not allowed method No permission to requested data
invalid id method Requested video ID is invalid
connection closed api Connection dropped early
connection error request Can't connect to API
request timeout request The request took too long to connect or process
error api API returned an error, see err.details
developer key missing api developerKey is not set, see Configuration.

=================================================================================

Feeds

Retrieve lists, search videos, related material.

feeds.videos

( [vars], callback )

Get a list of recently published or updated videos, or search them all, filter, sort, etc.

API docs: custom query parameters

youtube.feeds.videos (
	{
		q:              'parkour',
		'max-results':	2,
		orderby:        'published'
	},
	console.log
);

Output:

{ updated: '2012-06-18T17:55:11.294Z',
  totalItems: 6985,
  startIndex: 1,
  itemsPerPage: 2,
  items: 
   [ { id: 'WEeqHj3Nj2c',
       uploaded: '2006-06-08T01:17:06.000Z',
       updated: '2012-06-18T15:53:06.000Z',
       uploader: 'sauloca',
       category: 'Sports',
       title: 'Parkour and FreeRunning',
       description: 'Edited by: Saulo Sampson Chase [..]',
       tags: 
        [ 'le',
          'parkour',
          'free',
          'running' ],
       thumbnail: 
        { sqDefault: 'http://i.ytimg.com/vi/WEeqHj3Nj2c/default.jpg',
          hqDefault: 'http://i.ytimg.com/vi/WEeqHj3Nj2c/hqdefault.jpg' },
       player: 
        { default: 'https://www.youtube.com/watch?v=WEeqHj3Nj2c&feature=youtube_gdata_player',
          mobile: 'https://m.youtube.com/details?v=WEeqHj3Nj2c' },
       content: 
        { '1': 'rtsp://v8.cache8.c.youtube.com/CiILENy73wIaGQlnj809HqpHWBMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp',
          '5': 'https://www.youtube.com/v/WEeqHj3Nj2c?version=3&f=videos&app=youtube_gdata',
          '6': 'rtsp://v8.cache8.c.youtube.com/CiILENy73wIaGQlnj809HqpHWBMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' },
       duration: 218,
       geoCoordinates: { latitude: -7.100892543792725, longitude: -34.91455078125 },
       rating: 4.862864,
       likeCount: '85314',
       ratingCount: 88343,
       viewCount: 32718590,
       favoriteCount: 99541,
       accessControl: 
        { comment: 'denied',
          commentVote: 'allowed',
          videoRespond: 'moderated',
          rate: 'allowed',
          embed: 'allowed',
          list: 'allowed',
          autoPlay: 'allowed',
          syndicate: 'allowed' } } ] }

feeds.related

( videoid, [vars], callback )

Get related videos for a video with videoid.

feeds.responses

( videoid, [vars], callback )

Get videos in response to videoid.

feeds.comments

( videoid, [vars], callback )

Get comments to a video. This is still in the original XML-to-JSON format as YouTube does not have JSON-C available for this feed. This may change in future (major) versions of this module.

feeds.standard

( feed, [vars], callback )

Get a standard feed, such as most viewed or top rated videos. Worldwide, local or by subject (or a combination).

API docs: Standard feeds

Example: most recent videos worldwide:

youtube.feeds.standard ('most_recent', console.log);

Example: today's top-rated News videos in the Netherlands:

youtube.feeds.standard ('NL/top_rated_News', {time: 'today'}, console.log);

feeds.playlist

( playlistid, [vars], callback )

Get videos on a certain playlist.

=======================================================================

Video

The video function provides shorthand methods for one specific video.

video

( videoid, [callback] )

Same as video.details

youtube.video ('ern37eWDnT0', console.log);

video.details

( callback )

Get details for one video.

youtube.video ('ern37eWDnT0').details (console.log);

video.related

( [vars], callback )

Get related videos, same as feeds.related.

youtube.video ('ern37eWDnT0').related ({'max-results': 2}, console.log);

video.responses

( [vars], callback )

Get videos in response to one video, same as feeds.responses.

youtube.video ('ern37eWDnT0').responses ({'max-results': 2}, console.log);

videos.comments

( [vars], callback )

Get comments to a video, same as feeds.comments.

youtube.video ('ern37eWDnT0').comments ({'max-results': 2}, console.log);

=======================================================================

User

Get (public) feed data for one specific user.

user

( userid, [callback] )

Same as user.profile.

youtube.user ('user', console.log);

user.profile

( callback )

Get user profile, in old XML-to-JSON style.

youtube.user ('user').profile (console.log);

user.favorites

( [vars], callback )

Get the user's favorite videos. You can optionally filter the results like the other feeds.

youtube.user ('user').favorites (console.log);

user.playlists

( [vars], callback )

Get user playlists. Use feeds.playlist to get the videos.

user.uploads

( [vars], callback )

Get the user's uploaded videos.

youtube.user ('user').uploads (console.log);

=======================================================================

talk

( path, [fields], callback, [oldJsonKey] )

Directly talk to the API. This function takes care of connecting and calling the callback only when valid JSON is returned.

Param Type Description
path string full method path without leading slash
fields object GET parameters
callback function callback function to receive results
oldJsonKey boolean force old XML-to-JSON format instead of clean JSON-C its value is the key containing the expected results

Unlicense / Public Domain

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to http://unlicense.org

Author

Franklin van de Meent

More Repositories

1

nodejs-foscam

Remote control, view and config a Foscam or compatible IP camera
JavaScript
125
star
2

nodejs-tk102

DEPRECATED - Server for Xexun/Coban TK102 GPS tracker devices - Anyone want to take over this project?
JavaScript
112
star
3

speedtest

Simple bandwidth test in browser javascript
HTML
64
star
4

nodejs-geoip2ws

Maxmind GeoIP2 Web Services for Node.js
JavaScript
47
star
5

nodejs-gtmetrix

Node.js module for the GTmetrix API to run and access tests
JavaScript
41
star
6

nodejs-piwik

Access a Matomo (Piwik) API from node.js
JavaScript
38
star
7

nodejs-searchitunes

Lightweight node.js module to quickly search Apple's iTunes Store for music, movies, apps, etc.
JavaScript
29
star
8

nodejs-haveibeenpwned

API methods for HaveIBeenPwnd.com (unofficial)
JavaScript
17
star
9

nodejs-ns-api

Unofficial NodeJS module for Nederlandse Spoorwegen API
JavaScript
17
star
10

nodejs-dnsimple

REPO MOVED TO DNSIMPLE, see url:
JavaScript
16
star
11

nodejs-osx-photostream

Process new photos in real-time with iCloud PhotoStream on OSX
JavaScript
14
star
12

nodejs-passdock

PassDock API methods for iOS Wallet (PassBook)
JavaScript
13
star
13

dnsimple-php

DNSimple PHP class
PHP
12
star
14

nodejs-spark

Read and control your Spark Core with node.js :)
JavaScript
10
star
15

nodejs-europeana

Unofficial Node.js module for the Europeana API. Search and lookup art in various archives across Europe.
JavaScript
10
star
16

nodejs-fibonacci

Return any (big) fibonacci number
JavaScript
10
star
17

nodejs-cloudsight

Unofficial Node.js module for the CloudSight image recognition API
JavaScript
7
star
18

nodejs-toonapp

Eneco Toon module for node.js
JavaScript
6
star
19

nodejs-vnstat-dumpdb

Node.js wrapper for vnStat --dumpdb, with error handling and the same output structure on each system
JavaScript
6
star
20

nodejs-bolcom

[DEPRECATED] Unofficial node.js wrapper for the bol.com API
JavaScript
5
star
21

nodejs-geolocation

Google Maps Geolocation API for Node.js (unofficial)
JavaScript
3
star
22

FoscamTouch

Touch frontend for Foscam/Tenvis network camera
JavaScript
3
star
23

nodejs-requestbin

RequestBin module for node.js
JavaScript
3
star
24

nodejs-openkvk

Unofficial Openkvk.nl module for Node.js
JavaScript
2
star
25

nodejs-toonapi

Node.js package for Eneco/Quby Toon API (unofficial)
JavaScript
2
star
26

nodejs-ssldecoder

Node.js module to check your domain SSL/TLS setup with SSL Decoder.org (unofficial)
JavaScript
2
star
27

nodejs-planetos

Access the Planet OS API with your Node.js app (unofficial)
JavaScript
2
star
28

nodejs-skyhook

IP location lookup with Skyhook Hyperlocal IP
JavaScript
1
star
29

nodejs-messagebird

node.js module for MessageBird API
1
star
30

nodejs-readcsv

Parse CSV file with format detection
JavaScript
1
star
31

nodejs-brothermfc

Access Brother MFC web UI details with node.js. Only tested with MFC-J4710DW
JavaScript
1
star
32

nodejs-bitonic

Unofficial API wrapper for Bitonic.nl
JavaScript
1
star
33

nodejs-dotest

Yet another unit test runner for Node.js
JavaScript
1
star
34

fvdm.github.com

HTML
1
star
35

pusher-php

PHP function for Pusherapp.com
PHP
1
star
36

snippets

Bits and pieces in various languages
PHP
1
star
37

nodejs-politieapi

Access the Politie Open data API with Node.js (unofficial)
JavaScript
1
star
38

nodejs-gamepad

OSX PS3 gamepad experiment with node.js
JavaScript
1
star