From 562fce97907257e65e7002775be0e020aeed5bb0 Mon Sep 17 00:00:00 2001 From: Josh Tynjala Date: Tue, 18 Nov 2014 14:12:59 -0800 Subject: [PATCH] YouTubeFeeds: loads YouTube Feeds API from HTTP instead of HTTPS so that the web demo will work properly --- .../source/feathers/examples/youtube/screens/MainMenuScreen.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/YouTubeFeeds/source/feathers/examples/youtube/screens/MainMenuScreen.as b/examples/YouTubeFeeds/source/feathers/examples/youtube/screens/MainMenuScreen.as index 1c586d1227..af786b4766 100644 --- a/examples/YouTubeFeeds/source/feathers/examples/youtube/screens/MainMenuScreen.as +++ b/examples/YouTubeFeeds/source/feathers/examples/youtube/screens/MainMenuScreen.as @@ -30,7 +30,7 @@ package feathers.examples.youtube.screens public static const LIST_VIDEOS:String = "listVideos"; private static const CATEGORIES_URL:String = "http://gdata.youtube.com/schemas/2007/categories.cat"; - private static const FEED_URL_BEFORE:String = "https://gdata.youtube.com/feeds/api/standardfeeds/US/most_popular_"; + private static const FEED_URL_BEFORE:String = "http://gdata.youtube.com/feeds/api/standardfeeds/US/most_popular_"; private static const FEED_URL_AFTER:String = "?v=2"; public function MainMenuScreen()