social_post_facebook-8.x-1.x-dev/src/Plugin/Network/FacebookPostInterface.php
src/Plugin/Network/FacebookPostInterface.php
<?php
namespace Drupal\social_post_facebook\Plugin\Network;
use Drupal\social_post\Plugin\Network\NetworkInterface;
/**
* Defines an interface for Facebook Post Network Plugin.
*/
interface FacebookPostInterface extends NetworkInterface {
/**
* Gets the absolute url of the callback.
*
* @return string
* The callback url.
*/
public function getOauthCallback();
}
