Skip to content

Commit d27ae83

Browse files
author
Jim
committed
Added README.
1 parent 6ec4f1a commit d27ae83

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

README

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
CodeIgniter Youtube API Library
2+
===============================
3+
4+
This library will let a user authenticate with youtube and perform actions such as uploading a video, commenting and rating videos, and getting video feeds.
5+
6+
Some basic documentation can be found at http://code.google.com/apis/youtube/articles/codeigniter_library.html
7+
For the most up to date documentation checkout my blog at http://jimdoescode.blogspot.com
8+
9+
Usage
10+
------
11+
Copy the files under your application directory. Then load the library like this:
12+
13+
$params['apikey'] = 'YOUTUBE API KEY';
14+
$this->load->library('youtube', $params);
15+
16+
$this->youtube->getMostViewedVideoFeed(array('max-results'=>30));
17+
18+
License
19+
-------
20+
This library is licensed under the MIT license.
21+
22+
Sparks
23+
------
24+
You can also use this library with Sparks. Simply install using sparks then call.
25+
26+
$this->load->spark('youtube/1.0.0');
27+
28+
Then load the library as specified in the usage.
29+

0 commit comments

Comments
 (0)