Last updated:
0 purchases
link extractor
Link Extractor #
A Simple utility for extracting media urls from differennt social media websites.
Supported Websites #
Ok.ru
Baic Usage #
import 'package:link_extractor/link_extractor.dart';
try {
final extractor = LinkExtractor();
final links = await extractor.extract(
'https://ok.ru/video/43134487273',
);
extractor.dispose();
print(links);
} on UnsupportedSiteException (e) {
print('Website not supported. { error : $e }');
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.