Script to test remote oEmbed endpoints

This commit is contained in:
Mikael Nordfeldth 2015-09-28 12:25:40 +02:00
parent 34b6d37266
commit 118a4f56ab
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
#!/usr/bin/env php
<?php
define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..'));
$shortoptions = 'u:';
$longoptions = array('url=');
$helptext = <<<END_OF_HELP
poll_oembed.php --url URL
Test oEmbed API on a URL.
-u --url URL to try oEmbed against
END_OF_HELP;
require_once INSTALLDIR.'/scripts/commandline.inc';
if (!have_option('u', 'url')) {
echo 'No URL given.';
exit(1);
}
$url = get_option_value('u', 'url');
print "Contacting URL";
$oEmbed = oEmbedHelper::getObject($url);
var_dump($oEmbed);
print "\nDONE.\n";