0
votes
1answer
20 views

Get YouTube Unsubscribed Channel Trailer

YouTube has a feature in which you can have a video on your channel for unsubscribed users to view when they visit your channel. I'm trying to find a way to display this video on a web page using ...
0
votes
1answer
70 views

Get Youtube video details using Json in PHP

This is json code which am using to get youtube details in an array $url = "http://gdata.youtube.com/feeds/api/videos/eRUbL_qSEQA?v=2&alt=json"; $ch = curl_init($url); curl_setopt($ch, ...
0
votes
0answers
26 views

caroufredsel with Backbone.js

I am trying to load Youtube videos into the carouFredSel-carousel, it works fine when I add static video links, but not with dynamically added videos. I am using Backbone.js and YouTube.json files to ...
0
votes
0answers
41 views

I update the same video ID, but the youtube-api v3 still show “Video not found”

I used google js api Link1and youtube v3 api Link2 I want use js to update my video, the js code for listing videos: var requestOptions = { playlistId: playlistId, part: 'snippet', //id: ...
1
vote
1answer
76 views

How to upload a video to youtube using javascript?

I want to upload a video to youtube using javascript. Currently, I can login and get the list of the videos, but I do not know how to write the snippet to upload files. I used google js api Link1 and ...
0
votes
1answer
45 views

Using YouTube V3.0/V2.0 API to download JSON feed of channel stats and videos

I am trying to use a YouTube V3.0 API call to download a JSON feed of information for a particular YouTube channel (e.g: the Apple YouTube channel). I have been looking at the YouTube API ...
0
votes
1answer
42 views

Problems posting data into json url

Hey I'm sure this is an easy fix but it's driving me nuts. I'm working with the youtube api and I'm trying to post a user generated search term into the url like so: <form action="pagination.php" ...
0
votes
1answer
47 views

YouTube API V3 home feed

Using https://www.googleapis.com/youtube/v3/ , is there a way to get YouTube's home feed? When you launch YouTube it automatically shows videos of 'Popular on youtube' category. Is there a API call ...
0
votes
1answer
93 views

Getting a list of videos from a YouTube channel using JSON

I am attempting to list the 5 most recent videos (title, updated, thumbnail (hqDefault)) from a channel. I have the data in JSON format, but despite looking at several guides I can not seem to parse ...
0
votes
1answer
62 views

Youtube video subscription username and email id usign php json

I have a code like this. <?php $data = file_get_contents('http://gdata.youtube.com/feeds/api/users/userid?alt=json'); $data = json_decode($data, true); $stats_data = ...
0
votes
1answer
69 views

retrieve video (categoryID) from youtube using json

i want to upload youtube videos from my app and find those videos after. to do so i uploaded the videos using v3 youtube api here is part of the code that use to add title, description Etc. ...
0
votes
1answer
62 views

Youtube Fetch All Playlists

I am using a PHP script to find all the playlists that a particular user ID has uploaded. The problem is the script is not returning all the playlists, but only some of them . I want to get all the ...
0
votes
1answer
144 views

Youtube API get user videos by tag

I'm having issues while trying to get videos from certain user. Situations while trying to retrieve videos from edransgosocial how: ...
2
votes
2answers
155 views

jQuery .data(), need to accept array elements as key or find alternative (JSON?)

Thanks for checking out my post. I am building a jQuery-based selector for Youtube videos and would like to streamline the process as much as possible as I have many to upload. I would like to keep ...
0
votes
0answers
79 views

I am trying to populate the description div with the description of current loaded video in playlist

I am literally gnashing my teeth and pulling my hair out. I have a playlist and I am trying to get the description and ratings of the current playing video to populate my description div. here is the ...
3
votes
1answer
153 views

Return video duration from Youtube API using JSON

I'm trying to retrieve and print the duration of each video that is being returned via the Youtube API using JSON. The duration needs to be out putted like this: 9:34min and not in seconds But I ...
0
votes
1answer
159 views

Issue requesting YouTube API JSON feed via JavaScript in Internet Explorer

I have been using the youtube api and javascript to generate a player area and then arrows that allow the user to click and scroll through videos to play a new one in the player area. This works fine ...
0
votes
1answer
116 views

fetch Youtube subscribers count by JSON API in PHP

i want to get the subscriber count value from this JSON file: http://gdata.youtube.com/feeds/api/users/googlechrome?v=2&alt=json This is what i did but it's not working. $youtube_url = ...
0
votes
2answers
88 views

how to change title on Next and Previous button?

I am fetching Youtube videos into carousal which has next and previous button. I have also added the demo link .. how to change title, Description, Total Views on Next and Previous button ? ...
0
votes
1answer
70 views

YouTube api doesn't return all subscriptions

Ok so I am using https://gdata.youtube.com/feeds/api/users/default/subscriptions?alt=json&start-index=1&max-results=50&v=2.1 To get subscriptions of logged in user. After first request I ...
0
votes
0answers
75 views

Jquery linking static and dynamic arrays

I am trying to get jcarousel to work with youtube-api where it pulls in the feed of a users channel, parses the ID and then uses the ID to get thumbnails and other information to put into the ...
0
votes
1answer
112 views

Retrieving youtube playlist info using JSON not working on IE

Below code is working on chrome and mozilla but this is not working on IE 8. Could you help me out .. var video_id='VA770wpLX-Q'; ...
0
votes
1answer
352 views

How to load more than 50 youtube videos on UITableView?

I am using AFNetworking to parse JSON data on UITableView. YouTube api give JSON data for max 50 videos. I need to load more than 100 videos and i am not sure how to do that. Here is the url i am ...
0
votes
1answer
85 views

how to search and display youtube videos in uitableview?

Im looking for a simple example that shows how to search for a video, and display the results in a uitableview. I've been trying to do this, without any luck. any help would be greatly appreciated!
0
votes
2answers
355 views

UITable view to detail view JSON parsing with AFNetworking

I managed to parse data from YouTube API on UITable view using AFNetworking but i cant figure out how to use didSelectRowAtIndexPath:(NSIndexPath *)indexPath How do i pass the JSON data to the next ...
0
votes
1answer
219 views

getting empty UITable with AFNetworking JSON Parsing

I am trying to parse JSON data with AFNetworking AFJSONRequestOperation. But i am getting an empty UITable for some reason. I managed to do it without AFNetworking. Could someone please have a look ...
0
votes
1answer
107 views

How to make text using javascript and youtube api clickable

Right now I have a base html page that gets the most popular videos using youtubes api. So far it displays the title of the videos but i'm trying to make those titles clickable. If the title was ...
0
votes
1answer
61 views

Jsonc not working on IE?

The following code - a youtube loader with thumbnails - works in FF and Chrome, but not in IE. I am wondering if it's about the Jsonc call. I've heard it is better to use Jsonp with IE. Nonetheless ...
0
votes
1answer
204 views

getJSON is not Working in IE for Youtube

In this function i am retriving data from Youtube using JSON. this function is working in Chrome and Mozilla . but it is not working in IE . function test(url){ var youtube_id = ...
0
votes
1answer
136 views

Fetching information from Youtube using JSON not working in FIREFOX

I am attempting to fetch data from Youtube via JSON. This code is running in Chrome well, but it is not working in Firefox. My code is as follows: function test(url){ var youtube_id = ...
0
votes
0answers
178 views

YouTube data api with Json-c in android

Am trying to create a request to youtube and trying to parse the json-c result i get. The code is not working and is throwing exception. Where am i going wrong? Kindly help MainActivity.java ...
3
votes
3answers
279 views

How to get YouTube JSON GData url

i have made an application in which i am fetching YouTube videos using this url: http://gdata.youtube.com/feeds/api/users/GoogleDevelopers/uploads?v=2&alt=jsonc in a same way i want to fetch ...
-1
votes
1answer
154 views

Get a users youtube feed with knockout js?

Is this possible.. here's what I have atm, but my data object is just returning a load of jargon, what am I doing wrong? Am I doing anything.. right, for that matter? I basically want to print out a ...
0
votes
1answer
106 views

Returning JSON data from a user activity POST batch request

My post in a batch request looks like: <feed xmlns='http://www.w3.org/2005/Atom' xmlns:media='http://search.yahoo.com/mrss/' xmlns:batch='http://schemas.google.com/gdata/batch' ...
3
votes
2answers
352 views

what is the correct syntax to use for getting youtube data via json and php as at november 2012?

i'm having a difficult time getting youtube video data via json and php. i've spent a full night and morning trying code snippets from around the web and stack overflow. the fact that they are ...
0
votes
1answer
201 views

Grabbing the current viewer count for youtube live streams

I am looking to source the current stream viewers from the Youtube API v2 for live streams. This information seems to be available on Youtube live streams ("102 Watching Now") both on the main page ...
0
votes
2answers
140 views

Youtube api json date published error - 1970-01-01T00:00:00.000Z

In the linked JSON file from the YouTube API, the published date is wrong: "1970-01-01T00:00:00.000Z" But on the YouTube video it is correct: "Published on Aug 10, 2012 by Privalia" There are ...
0
votes
1answer
174 views

Fetch video data from YouTube on the fly

In my form, a user pastes (or types) the URL of the video from YouTube. When this happens I need to be able to fetch the relevant data from YouTube and pre-populate certain fields, e.g. title, ...
1
vote
1answer
134 views

Are keyword tags still available in API responses?

Doing a request for the data on an individual video such as: http://gdata.youtube.com/feeds/api/videos/K-YBQ_at_qU?v=2&alt=jsonc Used to result in a JSON object that contained a tags property. ...
0
votes
2answers
315 views

Youtube api - Retrieve all tags in a channel

Is there a way to retrieve a json of all the tags used in a Youtube channel? I'm trying to show all the videos of a channel on a website and I'd like to make a dropdown or something similar to filter ...
0
votes
1answer
75 views

Possible to overload on YouTube API calls?

A project I am working on makes multiple calls to the YouTube gdata API. Usually when I am using the site heavily and going through several pages that use the API, I just stop getting any returns from ...
2
votes
2answers
418 views

youtube API, get multiple users uploads videos

I try to find in youtube API (jsonp), if I can get in 1 query uploads videos from multiple users. for 1 users I can use this query string: ...
1
vote
1answer
2k views

Using YouTube API to get all comments from a video with the JSON feed

I'm using the YouTube API to get comments for a video with a parameterized query like the following: http://gdata.youtube.com/feeds/api/videos/theVideoID/comments?v=2&alt=json The problem with ...
0
votes
1answer
1k views

Channel Views from YouTube API?

I am looking to get the amount of channel views a YouTube channel has through their API. I have been looking through the documentation and been googling but I cannot seem to find how. Channel views ...
0
votes
3answers
263 views

Extracting data from JSON issue

I am trying to get some information about YouTube channel's from the YouTube API. This is an example the output (using Google's channel), http://gdata.youtube.com/feeds/api/users/Google?alt=json I ...
0
votes
4answers
2k views

Json xcode get data

I have a json http://gdata.youtube.com/feeds/api/users/ruflixnet/playlists?v=2&alt=jsonc and i want to get id,title and size, but don't now how to do that.
0
votes
2answers
640 views

How to make use API for website youtube-mp3? [closed]

In my website, I have this code at http://www.sharmy.fr/ajax/getytmp3.php: $er = file_get_contents("http://www.youtube-mp3.org/api/itemInfo/?video_id=KMU0tzLwhbE&ac=www&r=1335732125798"); ...
-3
votes
3answers
442 views

how to parse json in php and javascript [closed]

http://gdata.youtube.com/feeds/users/LadyGagaVEVO/uploads?alt=json&max-results=10&format=5 I would like to extract the video thumbnail and video link using PHP and JavaScript from the url ...
0
votes
1answer
205 views

Accessing Name Space Variables in XML with Jquery

I have the following XML: <?xml version='1.0' encoding='UTF-8' ?> <feed xmlns='http://www.w3.org/2005/Atom' xmlns:media='http://search.yahoo.com/mrss/' ...
2
votes
1answer
662 views

Parsing youtube data with C++ and Jsoncpp

Here is an example feed that I would like to parse: https://gdata.youtube.com/feeds/api/users/aniBOOM/subscriptions?v=2&alt=json You can check it with http://json.parser.online.fr/ to see what it ...

1 2