clerk2k / API-action

YOURLS plugin: how to implement a custom API action

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Plugin for YOURLS 1.6+: Custom API Action

What for

Create custom API action, such as:
http://sho.rt/yourls-api.php?username=x&password=xx&action=do_crazy_stuff&format=json

How to

  • In /user/plugins, create a new folder named api-action
  • Drop these files in that directory
  • Go to the Plugins administration page and activate the plugin
  • Have fun

Format your returns

Your API function should, ideally, return an array like this one:

	$return = array(
		'statusCode' => 200, // HTTP-like status code
		'simple'     => "a human readable one liner, if 'format=simple'",
		'message'    => 'a return status',
		'your_action' => array( 
			'something' => 'some value',   // anything function wants to return
			'otherthing' => 'other value',
		),
	);

About

YOURLS plugin: how to implement a custom API action


Languages

Language:PHP 100.0%