A dart library for extracting metadata in web pages. Supports OpenGraph, Meta, Twitter Cards, and Structured Data (Json-LD)
import 'package:metadata_fetch/metadata_fetch.dart';
main() async {
var data = extract("https://flutter.dev/"); // Use the extract() function to fetch data from the url
print(data.title) // Flutter - Beautiful native apps in record time
print(data.description) // Flutter is Google's UI toolkit for crafting beautiful...
print(data.image) // https://flutter.dev/images/flutter-logo-sharing.png
var dataAsMap = data.toMap();
}
This method prioritizes Open Graph data, followed by Twitter Card, JSON-LD and finally falls back too HTML metadata.
import 'package:metadata_fetch/metadata_fetch.dart';
import 'package:http/http.dart' as http;
void main () async {
// Makes a call
var response = await http.get('https://flutter.dev');
// Covert Response to a Document. The utility function `responseToDocument` is provided or you can use own decoder/parser.
var document = responseToDocument(response);
// get metadata
var data = MetadataParser.parse(document);
print(data);
}
import 'package:metadata_fetch/metadata_fetch.dart';
import 'package:http/http.dart' as http;
void main () async {
// Makes a call
var response = await http.get('https://flutter.dev');
// Covert Response to a Document. The utility function `responseToDocument` is provided or you can use own decoder/parser.
var document = responseToDocument(response);
// get metadata
var data = MetadataParser.OpenGraph(document);
print(data);
}
import 'package:metadata_fetch/metadata_fetch.dart';
import 'package:http/http.dart' as http;
void main () async {
// Makes a call
var response = await http.get('https://flutter.dev');
// Covert Response to a Document. The utility function `responseToDocument` is provided or you can use own decoder/parser.
var document = responseToDocument(response);
// get metadata
var data = MetadataParser.HtmlMeta(document);
print(data);
}
import 'package:metadata_fetch/metadata_fetch.dart';
import 'package:http/http.dart' as http;
void main () async {
// Makes a call
var response = await http.get('https://flutter.dev');
// Covert Response to a Document. The utility function `responseToDocument` is provided or you can use own decoder/parser.
var document = responseToDocument(response);
// Just Json-ld schema
var data = MetadataParser.JsonLdSchema(document);
print(data);
}
import 'package:metadata_fetch/metadata_fetch.dart';
import 'package:http/http.dart' as http;
void main () async {
// Makes a call
var response = await http.get('https://www.epicurious.com/expert-advice/best-soy-sauce-chefs-pick-article');
// Covert Response to a Document. The utility function `responseToDocument` is provided or you can use own decoder/parser.
var document = responseToDocument(response);
// Get Twitter Card metadata
var data = MetadataParser.TwitterCard(document);
print(data);
}
This library is inspired by open_graph_parser. However this one tries to be more general.
- Weighted or Preferred Metadata. Can assign custom weights for each parser to provide a fallback priority sytem
- Improve Documentation
Please forward all queries about this project to the issue tracker.