SkillAgentSearch skills...

LinkPreviewKit

Library to fetch the social media meta tag information from a website URL

Install / Use

/learn @kompozer/LinkPreviewKit
About this skill

Quality Score

0/100

Category

Marketing

Supported Platforms

Universal

README

LinkPreviewKit

Build Status Version License Platform

µLibrary to fetch the social media meta tag information from a website URL.

Supports Meta Tags for Standard Template (title and description), TwitterCard (twitter:) and OpenGraph (og:).

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.


#import "LKLinkPreviewKit.h"

[LKLinkPreviewReader linkPreviewFromURL:URL completionHandler:^(NSArray *previews, NSError *error) {
    if (previews.count > 0  && ! error) {
        for (LKLinkPreview *preview in previews) {
            NSLog(@"title: %@", preview.title);
            NSLog(@"type: %@", preview.type);
            NSLog(@"URL: %@", preview.URL);
            NSLog(@"imageURL: %@", preview.imageURL);
            NSLog(@"linkDescription: %@", preview.linkDescription);
        }
    }
}];

Requirements

Installation

LinkPreviewKit is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "LinkPreviewKit"

Author

Andreas Kompanez, @kompozer

License

LinkPreviewKit is available under the MIT license. See the LICENSE file for more info.

View on GitHub
GitHub Stars12
CategoryMarketing
Updated1y ago
Forks3

Languages

HTML

Security Score

75/100

Audited on Mar 17, 2025

No findings