You are here

public function FeedsFetcher::request in Feeds 8.2

Request handler invoked if callback URL is requested. Locked down by default. For a example usage see FeedsHTTPFetcher.

Note: this method may exit the script.

Return value

A string to be returned to the client.

1 method overrides FeedsFetcher::request()
FeedsHTTPFetcher::request in lib/Drupal/feeds/Plugin/feeds/fetcher/FeedsHTTPFetcher.php
Implements FeedsFetcher::request().

File

lib/Drupal/feeds/Plugin/FeedsFetcher.php, line 58
Contains the FeedsFetcher and related classes.

Class

FeedsFetcher
Abstract class, defines shared functionality between fetchers.

Namespace

Drupal\feeds\Plugin

Code

public function request($feed_nid = 0) {
  drupal_access_denied();
}