juncture / yt-wrapper
Wrapper for the Youtube API
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/juncture/yt-wrapper
Requires
- php: >=5.3.0
- illuminate/support: 4.1.x
This package is not auto-updated.
Last update: 2025-12-16 12:36:42 UTC
README
The Google/Youtube API isn't the nicest thing in the world to work with. Here's yet another Youtube API wrapper!
Installation
Todo.
Getting Started
Once installed, getting connected is easy. Instead of the dozen-plus lines required to get the Google and Youtube services set up, add this small snippet and you're good to go:
Youtube::init((object) Config::get('google')); if ( ! Youtube::setToken(Session::get('token'))) { return Redirect::to(Youtube::getAuthUrl()); }