All Projects → IonicaBizau → Youtube Api

IonicaBizau / Youtube Api

Licence: mit
📹 A Node.JS module, which provides an object oriented wrapper for the YouTube v3 API.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Youtube Api

Pode
Pode is a Cross-Platform PowerShell web framework for creating REST APIs, Web Sites, and TCP/SMTP servers
Stars: ✭ 329 (-2.66%)
Mutual labels:  hacktoberfest
Admin
A beautiful and fully-featured administration interface builder for hypermedia APIs
Stars: ✭ 335 (-0.89%)
Mutual labels:  hacktoberfest
Parse Dashboard
A dashboard for managing your Parse Server Apps
Stars: ✭ 3,534 (+945.56%)
Mutual labels:  hacktoberfest
Node Build Monitor
A Build Monitor written in Node.js, which supports several build services and can be easily extended.
Stars: ✭ 336 (-0.59%)
Mutual labels:  hacktoberfest
Grouparoo
🦘 The Grouparoo Monorepo - open source customer data sync framework
Stars: ✭ 334 (-1.18%)
Mutual labels:  hacktoberfest
Livecode
LiveCode cross-platform development environment (engine)
Stars: ✭ 336 (-0.59%)
Mutual labels:  hacktoberfest
Egeria
Open Metadata and Governance
Stars: ✭ 328 (-2.96%)
Mutual labels:  hacktoberfest
Portage
[MIRROR] Package management system
Stars: ✭ 336 (-0.59%)
Mutual labels:  hacktoberfest
Pact Python
Python version of Pact. Enables consumer driven contract testing, providing a mock service and DSL for the consumer project, and interaction playback and verification for the service provider project.
Stars: ✭ 335 (-0.89%)
Mutual labels:  hacktoberfest
Jotai
👻 Primitive and flexible state management for React
Stars: ✭ 6,453 (+1809.17%)
Mutual labels:  hacktoberfest
Stream
🗄️ Stream plugin for WordPress
Stars: ✭ 335 (-0.89%)
Mutual labels:  hacktoberfest
Guark
Build awesome Golang desktop apps and beautiful interfaces with Vue.js, React.js, Framework 7, and more...
Stars: ✭ 334 (-1.18%)
Mutual labels:  hacktoberfest
Trefle Api
🍀 Trefle is a botanical JSON REST API for plants species, allowing you to search and query over all the registered species, and build the next gardening apps and farming robots.
Stars: ✭ 335 (-0.89%)
Mutual labels:  hacktoberfest
Validator Docs
Validação de CPF, CNPJ, CNH, NIS, Título Eleitoral e Cartão Nacional de Saúde com Laravel.
Stars: ✭ 334 (-1.18%)
Mutual labels:  hacktoberfest
Hexagon
Hexagon is a microservices toolkit written in Kotlin. Its purpose is to ease the building of services (Web applications, APIs or queue consumers) that run inside a cloud platform.
Stars: ✭ 336 (-0.59%)
Mutual labels:  hacktoberfest
Bugbug
Platform for Machine Learning projects on Software Engineering
Stars: ✭ 334 (-1.18%)
Mutual labels:  hacktoberfest
Netcdf C
Official GitHub repository for netCDF-C libraries and utilities.
Stars: ✭ 336 (-0.59%)
Mutual labels:  hacktoberfest
Kotlin Telegram Bot
🤖 A wrapper for the Telegram Bot API written in Kotlin
Stars: ✭ 337 (-0.3%)
Mutual labels:  hacktoberfest
Phpmussel
PHP-based anti-virus anti-trojan anti-malware solution.
Stars: ✭ 337 (-0.3%)
Mutual labels:  hacktoberfest
Autostarter
This library helps bring up the autostart permission manager of a phone to the user so they can add an app to autostart.
Stars: ✭ 334 (-1.18%)
Mutual labels:  hacktoberfest

youtube-api

Support me on Patreon Buy me a book PayPal Ask me anything Version Downloads Get help on Codementor

Buy Me A Coffee

A Node.JS module, which provides an object oriented wrapper for the Youtube v3 API.

☁️ Installation

# Using npm
npm install --save youtube-api

# Using yarn
yarn add youtube-api

📋 Example

/**
 * This script uploads a video (specifically `video.mp4` from the current
 * directory) to YouTube,
 *
 * To run this script you have to create OAuth2 credentials and download them
 * as JSON and replace the `credentials.json` file. Then install the
 * dependencies:
 *
 * npm i r-json lien opn bug-killer
 *
 * Don't forget to run an `npm i` to install the `youtube-api` dependencies.
 * */

const Youtube = require("youtube-api")
    , fs = require("fs")
    , readJson = require("r-json")
    , Lien = require("lien")
    , Logger = require("bug-killer")
    , opn = require("opn")
    , prettyBytes = require("pretty-bytes")
    ;

// I downloaded the file from OAuth2 -> Download JSON
const CREDENTIALS = readJson(`${__dirname}/credentials.json`);

// Init lien server
let server = new Lien({
    host: "localhost"
  , port: 5000
});

// Authenticate
// You can access the Youtube resources via OAuth2 only.
// https://developers.google.com/youtube/v3/guides/moving_to_oauth#service_accounts
let oauth = Youtube.authenticate({
    type: "oauth"
  , client_id: CREDENTIALS.web.client_id
  , client_secret: CREDENTIALS.web.client_secret
  , redirect_url: CREDENTIALS.web.redirect_uris[0]
});

opn(oauth.generateAuthUrl({
    access_type: "offline"
  , scope: ["https://www.googleapis.com/auth/youtube.upload"]
}));

// Handle oauth2 callback
server.addPage("/oauth2callback", lien => {
    Logger.log("Trying to get the token using the following code: " + lien.query.code);
    oauth.getToken(lien.query.code, (err, tokens) => {

        if (err) {
            lien.lien(err, 400);
            return Logger.log(err);
        }

        Logger.log("Got the tokens.");

        oauth.setCredentials(tokens);

        lien.end("The video is being uploaded. Check out the logs in the terminal.");

        var req = Youtube.videos.insert({
            resource: {
                // Video title and description
                snippet: {
                    title: "Testing YoutTube API NodeJS module"
                  , description: "Test video upload via YouTube API"
                }
                // I don't want to spam my subscribers
              , status: {
                    privacyStatus: "private"
                }
            }
            // This is for the callback function
          , part: "snippet,status"

            // Create the readable stream to upload the video
          , media: {
                body: fs.createReadStream("video.mp4")
            }
        }, (err, data) => {
            console.log("Done.");
            process.exit();
        });

        setInterval(function () {
            Logger.log(`${prettyBytes(req.req.connection._bytesDispatched)} bytes uploaded.`);
        }, 250);
    });
});

❓ Get Help

There are few ways to get help:

  1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
  2. For bug reports and feature requests, open issues. 🐛
  3. For direct and quick help, you can use Codementor. 🚀

📝 Documentation

The official Youtube documentation is a very useful resource.

If you have any questions, please ask them on Stack Overflow and eventually open an issue and link your question there.

Authentication

OAuth (Access Token)

Youtube.authenticate({
    type: "oauth"
  , token: "your access token"
});

OAuth (Refresh Token)

Youtube.authenticate({
    type: "oauth"
  , refresh_token: "your refresh token"
  , client_id: "your client id"
  , client_secret: "your client secret"
  , redirect_url: "your refresh url"
});

Server Key

Only for requests that don't require user authorization (certain list operations)

Youtube.authenticate({
    type: "key"
  , key: "your server key"
});

😋 How to contribute

Have an idea? Found a bug? See how to contribute.

💖 Support my projects

I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).

However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:

  • Starring and sharing the projects you like 🚀

  • Buy me a book—I love books! I will remember you after years if you buy me one. 😁 📖

  • PayPal—You can make one-time donations via PayPal. I'll probably buy a coffee tea. 🍵

  • Support me on Patreon—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).

  • Bitcoin—You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6

Thanks! ❤️

💫 Where is this library used?

If you are using this library in one of your projects, add it in this list. ✨

  • youtube-playlist-info
  • node-youtubeapi-simplifier
  • youtube-channel-videos
  • YouSlackBot
  • ydown
  • youtube-dler
  • test-youtube-api
  • steam-chat-bot
  • youtube-vanitystats
  • node-red-node-youtube
  • kyot-sunday-playlists
  • anitube
  • mediacenterjs-youtube
  • node-red-contrib-youtube
  • pullplaylist
  • youtube-album-uploader
  • mediacenterjs
  • adasq-services-ytv
  • youtube-comment-sampler
  • botyo-command-youtube
  • muzier-cli
  • osjs-youtube-adapter
  • @zlucy/lucy-search
  • youtube-album-uploader-multiple
  • chewb-youtube-uploader
  • hpcbot
  • nodejs-youtube-uploader
  • spotivy
  • @dottjt/mediareade

📜 License

MIT © Ionică Bizău

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].