forked from GNUsocial/gnu-social
Script to test remote oEmbed endpoints
This commit is contained in:
parent
34b6d37266
commit
118a4f56ab
31
plugins/Oembed/scripts/poll_oembed.php
Executable file
31
plugins/Oembed/scripts/poll_oembed.php
Executable 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";
|
Loading…
Reference in New Issue
Block a user