- API
http://vimeo.com/api - Advance API
http://vimeo.com/api/docs/advanced-api - Video Search Function
http://vimeo.com/api/playground/vimeo.videos.search
Web Developer Zend Framework, Magento, Joomla, Drupal, Wordpress, Expression Engine, PhpProBid, PHP 5.x, MySql 5.x, Paypal, CCAvenue, SagePay, Google CheckOut, Theme Creation/Integration and developing additional modules.
Tuesday, March 22, 2011
Vimeo Video Crawling
Labels:
Video Crawling,
Vimeo,
Vimeo API,
Vimeo API with PHP,
Vimeo PHP
Dailymotion Video Crawling
- API
http://www.dailymotion.com/doc/api/index.html - PHP SDK
http://www.dailymotion.com/doc/api/sdk-php.html#sdk-php - Advance API Reference
http://www.dailymotion.com/doc/api/advanced-api-reference.html#advanced-api-reference - Need to call "video.list" function and parameter should be "search (string) - A search query"
- API Documentation
www.dailymotion.com/doc/api/DailymotionAPIs.pdf
Wednesday, March 16, 2011
YouTube Video Crawling
Hi Guys,
I got the chance to work on YouTube API so thought that I should share the useful links so that it saves your time.
I got the chance to work on YouTube API so thought that I should share the useful links so that it saves your time.
- YouTube API
http://code.google.com/apis/youtube/getting_started.html#data_api - Get search term feed
http://gdata.youtube.com/feeds/api/videos?q=internet&v=2 (include the video id also) - PHP Guide
http://code.google.com/apis/youtube/2.0/developers_guide_php.html - YouTube API with PHP
http://www.ibm.com/developerworks/xml/library/x-youtubeapi/ - API Parameters
http://code.google.com/apis/youtube/2.0/developers_guide_protocol_api_query_parameters.html#Searching_for_Videos - Guide to display Videos
http://code.google.com/apis/youtube/2.0/developers_guide_protocol_displaying_list_of_videos.html - Custom YouTube Video Player
http://tutorialzine.com/2010/07/youtube-api-custom-player-jquery-css/
Labels:
Video Crawling,
YouTube,
YouTube API,
YouTube API with PHP,
YouTube PHP
Thursday, February 24, 2011
Infinite loop in Facebook Application
Replace this line
You may change the permissions as per your requirement.
$fb_user_id = $facebook->require_login();
to$fb_user_id = $facebook->require_login($required_permissions = 'publish_stream');
You may change the permissions as per your requirement.
How To Resize iFrame & Remove Scrollbar From Your iFrame Facebook App?
If you are looking for PHP SDK Click Here to download it.
Code I used to remove the scrollbar from facebook application is this:
Make sure you set the facebook application setting to AutoResize, to do so follow this instructions:
Code I used to remove the scrollbar from facebook application is this:
<script type="text/javascript" src="http://connect.facebook.net/en_US/all.js"></script>
<script type="text/javascript">
function framesetsize(w,h){
var obj = new Object;
obj.width=w;
obj.height=h;
FB.Canvas.setSize(obj);
}
</script>
<body onload="framesetsize(500,2100)">
<div id="fb-root"></div>
<div style="height: 2000px">
</div>
</body> Make sure you set the facebook application setting to AutoResize, to do so follow this instructions:
- Login to your Facebook account
- Go to Developer panel
- Go to your application
- Click on Edit Setting
- Click on Facebook Integration Tab
- Select IFrame size to Auto-resize
Subscribe to:
Posts (Atom)