Method: OpenGraphReader::Fetcher#fetched_headers?

Defined in:
lib/open_graph_reader/fetcher.rb

#fetched_headers?Bool

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Whether the headers of the target URI were fetched.

Returns:

  • (Bool)


104
105
106
# File 'lib/open_graph_reader/fetcher.rb', line 104

def fetched_headers?
  fetch_failed? || !@get_response.nil? || !@head_response.nil?
end