AlexWright Posted June 16, 2019 Share Posted June 16, 2019 Is there an updated list of content that will auto-embed when a link is pasted? Thanks! Link to comment Share on other sites More sharing options...
Fosters Posted June 16, 2019 Share Posted June 16, 2019 You can find it in the Parser.php file 'youtube.com' => array( 'https://www.youtube.com/oembed', static::EMBED_VIDEO ), 'm.youtube.com' => array( 'https://www.youtube.com/oembed', static::EMBED_VIDEO ), 'youtu.be' => array( 'https://www.youtube.com/oembed', static::EMBED_VIDEO ), 'flickr.com' => array( 'https://www.flickr.com/services/oembed/', static::EMBED_IMAGE ), 'flic.kr' => array( 'https://www.flickr.com/services/oembed/', static::EMBED_IMAGE ), 'hulu.com' => array( 'http://www.hulu.com/api/oembed.json', static::EMBED_VIDEO ), 'vimeo.com' => array( 'https://vimeo.com/api/oembed.json', static::EMBED_VIDEO ), 'collegehumor.com' => array( 'http://www.collegehumor.com/oembed.json', static::EMBED_VIDEO ), 'twitter.com' => array( 'https://api.twitter.com/1/statuses/oembed.json', static::EMBED_TWEET ), 'instagr.am' => array( 'https://api.instagram.com/oembed', static::EMBED_IMAGE ), 'instagram.com' => array( 'https://api.instagram.com/oembed', static::EMBED_IMAGE ), 'soundcloud.com' => array( 'https://soundcloud.com/oembed', static::EMBED_VIDEO ), 'open.spotify.com' => array( 'https://embed.spotify.com/oembed/', static::EMBED_VIDEO ), 'play.spotify.com' => array( 'https://embed.spotify.com/oembed/', static::EMBED_VIDEO ), 'ted.com' => array( 'https://www.ted.com/services/v1/oembed', static::EMBED_VIDEO ), 'vine.co' => array( 'https://vine.co/oembed.json', static::EMBED_VIDEO ), 'facebook.com' => array( '(\/.+?\/videos\/|video.php)' => array( 'https://www.facebook.com/plugins/video/oembed.json', static::EMBED_VIDEO ), 0 => array( 'https://www.facebook.com/plugins/post/oembed.json', static::EMBED_STATUS ), ), 'gfycat.com' => array( 'https://api.gfycat.com/v1/oembed', static::EMBED_IMAGE ), 'dailymotion.com' => array( 'https://www.dailymotion.com/services/oembed', static::EMBED_VIDEO ), 'coub.com' => array( 'http://coub.com/api/oembed.json', static::EMBED_VIDEO ), '*.deviantart.com' => array( 'https://backend.deviantart.com/oembed', static::EMBED_IMAGE ), 'docs.com' => array( 'http://docs.com/api/oembed', static::EMBED_LINK ), 'funnyordie.com' => array( 'http://www.funnyordie.com/oembed.json', static::EMBED_VIDEO ), 'gettyimages.com' => array( 'http://embed.gettyimages.com/oembed', static::EMBED_IMAGE ), 'ifixit.com' => array( 'http://www.ifixit.com/Embed', static::EMBED_LINK ), 'kickstarter.com' => array( 'http://www.kickstarter.com/services/oembed', static::EMBED_LINK ), 'meetup.com' => array( 'https://api.meetup.com/oembed', static::EMBED_LINK ), 'mixcloud.com' => array( 'https://www.mixcloud.com/oembed/', static::EMBED_VIDEO ), 'mix.office.com' => array( 'https://mix.office.com/oembed', static::EMBED_VIDEO ), 'reddit.com' => array( 'http://www.reddit.com/oembed', static::EMBED_LINK ), 'reverbnation.com' => array( 'https://www.reverbnation.com/oembed', static::EMBED_VIDEO ), 'screencast.com' => array( 'https://api.screencast.com/external/oembed', static::EMBED_IMAGE ), 'slideshare.net' => array( 'http://www.slideshare.net/api/oembed/2', static::EMBED_VIDEO ), '*.smugmug.com' => array( 'http://api.smugmug.com/services/oembed', static::EMBED_IMAGE ), 'ustream.tv' => array( 'https://www.ustream.tv/oembed', static::EMBED_VIDEO ), '*.wistia.com' => array( 'http://fast.wistia.com/oembed', static::EMBED_VIDEO ), '*.wi.st' => array( 'http://fast.wistia.com/oembed', static::EMBED_VIDEO ), 'clips.twitch.tv' => array( 'https://api.twitch.tv/v5/oembed', static::EMBED_VIDEO), Link to comment Share on other sites More sharing options...
AlexWright Posted June 16, 2019 Author Share Posted June 16, 2019 Thank you so much @Fosters! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.