madcoda/php-youtube-api 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

madcoda/php-youtube-api

最新稳定版本:v1.2.6

Composer 安装命令:

composer require madcoda/php-youtube-api

包简介

PHP wrapper for the Youtube Data API v3

README 文档

README

Build Status

A basic PHP wrapper for the Youtube Data API v3 ( Non-OAuth ). Designed to let devs easily fetch public data (Video, Channel, Playlists info) from Youtube. No 3rd party dependancy (except PHPUnit). The reason for returning the decoded JSON response directly, is that you only need to read the Google API doc to use this library, instead of learning my set of API again (Keep it simple).

Well.. actually some parameters are missing in this library, because I don't need them at this point. If you desire a particular feature, please file an issue here :)

Currently I will not consider adding OAuth endpoints. (those required "authorized request" will not be supported)

Requirements

  • PHP >=5.3
  • CURL extension in PHP

Install

Run the following command in your command line shell for your php project

$ composer require madcoda/php-youtube-api:^1.2

Done.

You may also edit composer.json manually then perform composer update

"require": {
    "madcoda/php-youtube-api": "^1.2"
}

Getting started

Please read the wiki on how to use this library with PHP with composer, Laravel 4 and Laravel 5.

For the functions implemented in this library, please visit API Reference

Example usage with pure PHP (with composer)

require 'vendor/autoload.php';
$youtube = new Madcoda\Youtube\Youtube(array('key' => '* Your API key here *'));
$video = $youtube->getVideoInfo('rie-hPVJ7Sw');

Example usage with Laravel 4/5

$video = Youtube::getVideoInfo(Input::get('vid', 'dQw4w9WgXcQ');

Format of returned data

The returned json is decoded as PHP objects (not Array). Please read the "Reference" section of the official API doc.

YouTube Data API v3

Contact

For bugs, complaints, or suggestions, please file an Issue here or send email to jason@madcoda.com :)

License

This repo madcoda/php-youtube-api is licensed under the MIT License.

统计信息

  • 总下载量: 1.18M
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 446
  • 点击次数: 1
  • 依赖项目数: 10
  • 推荐数: 0

GitHub 信息

  • Stars: 432
  • Watchers: 26
  • Forks: 114
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2013-09-02