-
AuthorPosts
-
stulaine Friend
stulaine
- Join date:
- February 2014
- Posts:
- 106
- Downloads:
- 194
- Uploads:
- 9
- Thanks:
- 20
- Thanked:
- 24 times in 2 posts
May 27, 2015 at 3:45 am #206666We have downloaded the most recent plugin in hopes that it had fixed some of the YouTube issues and added playlist.
We have been attempting to add a playlist of videos to K2 to no avail. When we verify the playlist the xml shows what we expect. When we hit run now we get nothing.
The playlist is PLokUMIyJZ1_aS3y8tO5-udiJ6ws-cmzvY You can try it yourself directly or in our staging server.
We need this very much. The vimeo works great.
Thanks
Luna Garden ModeratorLuna Garden
- Join date:
- July 2011
- Posts:
- 2617
- Downloads:
- 80
- Uploads:
- 96
- Thanks:
- 78
- Thanked:
- 453 times in 425 posts
May 27, 2015 at 11:48 am #571959Hi,
The YouTube Data API (v2) has been officially deprecated as of March 4, 2014. YouTube Data API is moved to YouTube Data API (v3) for new integrations and migrate applications still using the v2 API to the v3 API as well. So you must enter API to this plugin works for Youtube importing as this capture: http://easycaptures.com/fs/uploaded/847/6212304571.png
Follow this link to know how to get API key: https://developers.google.com/youtube/registering_an_applicationstulaine Friendstulaine
- Join date:
- February 2014
- Posts:
- 106
- Downloads:
- 194
- Uploads:
- 9
- Thanks:
- 20
- Thanked:
- 24 times in 2 posts
May 27, 2015 at 8:25 pm #572048I had already tried to enter my API key. I enter it, save and it goes away. Not sure it is actually staying. Anyway even if I just put the api key in and hit run now the results are the same. No Results
stulaine Friendstulaine
- Join date:
- February 2014
- Posts:
- 106
- Downloads:
- 194
- Uploads:
- 9
- Thanks:
- 20
- Thanked:
- 24 times in 2 posts
May 27, 2015 at 8:25 pm #737088I had already tried to enter my API key. I enter it, save and it goes away. Not sure it is actually staying. Anyway even if I just put the api key in and hit run now the results are the same. No Results
Luna Garden ModeratorLuna Garden
- Join date:
- July 2011
- Posts:
- 2617
- Downloads:
- 80
- Uploads:
- 96
- Thanks:
- 78
- Thanked:
- 453 times in 425 posts
May 28, 2015 at 8:24 pm #572197<em>@stulaine 475336 wrote:</em><blockquote>I had already tried to enter my API key. I enter it, save and it goes away. Not sure it is actually staying. Anyway even if I just put the api key in and hit run now the results are the same. No Results</blockquote>
Same exact problem. Data API Key is not saving.
Luna Garden ModeratorLuna Garden
- Join date:
- July 2011
- Posts:
- 2617
- Downloads:
- 80
- Uploads:
- 96
- Thanks:
- 78
- Thanked:
- 453 times in 425 posts
June 3, 2015 at 8:53 am #572701Hi,
The fix version for issue Youtube API key has been release. Please check and download at: http://www.joomlart.com/forums/downloads.php?do=cat&id=20454
Luna Garden ModeratorLuna Garden
- Join date:
- July 2011
- Posts:
- 2617
- Downloads:
- 80
- Uploads:
- 96
- Thanks:
- 78
- Thanked:
- 453 times in 425 posts
June 3, 2015 at 8:53 am #737736Hi,
The fix version for issue Youtube API key has been release. Please check and download at: http://www.joomlart.com/forums/downloads.php?do=cat&id=20454
stulaine Friendstulaine
- Join date:
- February 2014
- Posts:
- 106
- Downloads:
- 194
- Uploads:
- 9
- Thanks:
- 20
- Thanked:
- 24 times in 2 posts
June 9, 2015 at 6:44 pm #573485We had this import once but now it will not import a playlist again.
Hitting the verify button gets a null
Running it gets a “no longer available” with null results
The playlist ID we are attempting to get is PLokUMIyJZ1_aS3y8tO5-udiJ6ws-cmzvY
Please advise not sure if this is the plugin or Youtube misbehaving.
Thanks
stulaine Friendstulaine
- Join date:
- February 2014
- Posts:
- 106
- Downloads:
- 194
- Uploads:
- 9
- Thanks:
- 20
- Thanked:
- 24 times in 2 posts
June 9, 2015 at 6:44 pm #738512We had this import once but now it will not import a playlist again.
Hitting the verify button gets a null
Running it gets a “no longer available” with null results
The playlist ID we are attempting to get is PLokUMIyJZ1_aS3y8tO5-udiJ6ws-cmzvY
Please advise not sure if this is the plugin or Youtube misbehaving.
Thanks
Luna Garden ModeratorLuna Garden
- Join date:
- July 2011
- Posts:
- 2617
- Downloads:
- 80
- Uploads:
- 96
- Thanks:
- 78
- Thanked:
- 453 times in 425 posts
June 10, 2015 at 4:19 am #573529Hi Stulaine,
Thanks for your report.
Youtube has just change the link to retrieve playlist data.
In order to fix this issue, go to file: pluginssystemjasocial_feedelementsassetsjsjat3.js
find for:
if (option == 'username'){
url = "https://youtube.com/feeds/videos.xml?user="+encodeURIComponent($(pid).value);
} else if (option == 'playlistID'){
url = "http://gdata.youtube.com/feeds/api/playlists/"+encodeURIComponent($(pid).value);
}
change to:
if (option == 'username'){
url = "https://youtube.com/feeds/videos.xml?user="+encodeURIComponent($(pid).value);
} else if (option == 'playlistID'){
url = "https://youtube.com/feeds/videos.xml?playlist_id="+encodeURIComponent($(pid).value);
}Luna Garden ModeratorLuna Garden
- Join date:
- July 2011
- Posts:
- 2617
- Downloads:
- 80
- Uploads:
- 96
- Thanks:
- 78
- Thanked:
- 453 times in 425 posts
June 10, 2015 at 4:19 am #738556Hi Stulaine,
Thanks for your report.
Youtube has just change the link to retrieve playlist data.
In order to fix this issue, go to file: pluginssystemjasocial_feedelementsassetsjsjat3.js
find for:
if (option == 'username'){
url = "https://youtube.com/feeds/videos.xml?user="+encodeURIComponent($(pid).value);
} else if (option == 'playlistID'){
url = "http://gdata.youtube.com/feeds/api/playlists/"+encodeURIComponent($(pid).value);
}
change to:
if (option == 'username'){
url = "https://youtube.com/feeds/videos.xml?user="+encodeURIComponent($(pid).value);
} else if (option == 'playlistID'){
url = "https://youtube.com/feeds/videos.xml?playlist_id="+encodeURIComponent($(pid).value);
}stulaine Friendstulaine
- Join date:
- February 2014
- Posts:
- 106
- Downloads:
- 194
- Uploads:
- 9
- Thanks:
- 20
- Thanked:
- 24 times in 2 posts
June 10, 2015 at 3:19 pm #573608We were premature is saying that this works.
If you hit the verify button the youtube videos show that would be imported.
When we run now we get a quick done which always means nothing imported and true enough nothing imported.
Please advise.
THanks
Luna Garden ModeratorLuna Garden
- Join date:
- July 2011
- Posts:
- 2617
- Downloads:
- 80
- Uploads:
- 96
- Thanks:
- 78
- Thanked:
- 453 times in 425 posts
June 11, 2015 at 2:52 am #573648Hi,
I have tried to import your playlist, it still works, here is the article i get: http://easycaptures.com/fs/uploaded/861/9527495893.png
Please check your setting again to make sure you have correct config.If nothing is imported, PM your site URL, and admin account to check the problem.
June 14, 2015 at 8:50 am #573938I had the same issue and explained it in my http://www.joomlart.com/forums/topic/plugin-no-longer-fetches-data-from-youtube-due-to-change-of-api/ thread 3 weeks ago. Thread closed and “resolved” :eek:. Thanks for investigating a little more on this. I’m going to try to change the code as mentioned and see if it works this time …
-
AuthorPosts
This topic contains 18 replies, has 4 voices, and was last updated by startar 9 years, 4 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum