OpenGraph-Net 3.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package OpenGraph-Net --version 3.2.0
NuGet\Install-Package OpenGraph-Net -Version 3.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OpenGraph-Net" Version="3.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OpenGraph-Net --version 3.2.0
#r "nuget: OpenGraph-Net, 3.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install OpenGraph-Net as a Cake Addin
#addin nuget:?package=OpenGraph-Net&version=3.2.0

// Install OpenGraph-Net as a Cake Tool
#tool nuget:?package=OpenGraph-Net&version=3.2.0

OpenGraphNet

AppVeyor Nuget V Nuget dl License gitter

A simple .net assembly to use to parse Open Graph information from either a URL or an HTML snippet. You can read more about the Open Graph protocol @ http://ogp.me.

Usage

These are the basic operations of the OpenGraphNet parser.

Parsing from a URL

Synchronosly parse a url:

OpenGraph graph = OpenGraph.ParseUrl("https://open.spotify.com/user/er811nzvdw2cy2qgkrlei9sqe/playlist/2lzTTRqhYS6AkHPIvdX9u3?si=KcZxfwiIR7OBPCzj20utaQ");

Use async/await to parse a url:

OpenGraph graph = await OpenGraph.ParseUrlAsync("https://open.spotify.com/user/er811nzvdw2cy2qgkrlei9sqe/playlist/2lzTTRqhYS6AkHPIvdX9u3?si=KcZxfwiIR7OBPCzj20utaQ");

Acessing Values

Accessing Metadata

Each metadata element is is stored as an array. Additionally, each element's properties are also stored as an array.

<meta property="og:image" content="http://example.com/img1.png">
<meta property="og:image:width" content="30">
<meta property="og:image" content="http://example.com/img2.png">
<meta property="og:image:width" content="60">
<meta property="og:locale" content="en">
<meta property="og:locale:alternate" content="en_US">
<meta property="og:locale:alternate" content="en_GB">

You would access the values from the sample HTML above as:

  • graph.Metadata["og:image"].First().Value // "http://example.com/img1.png".
  • graph.Metadata["og:image"].First().Properties["width"].Value() // "30".
  • graph.Metadata["og:image"][1].Value // "http://example.com/img2.png".
  • graph.Metadata["og:image"][1].Properties["width"].Value() // "30".
  • graph.Metadata["og:locale"].Value() // "en"
  • graph.Metadata["og:locale"].First().Properties["alternate"][0].Value // "en_US"
  • graph.Metadata["og:locale"].First().Properties["alternate"][1].Value // "en_GB"

Basic Metadata

The four required Open Graph properties for all pages are available as direct properties on the OpenGraph object.

  • graph.Type is a shortcut for graph.Metadata["og:type"].Value()
  • graph.Title is a shortcut for graph.Metadata["og:title"].Value()
  • graph.Image is a shortcut for graph.Metadata["og:image"].Value() Note: since there can be multiple images, this helper returns the URI of the first image. If you want to access images or child properties like og:image:width then you should instead use the graph.Metadata dictionary.
  • graph.Url is a shortcut for graph.Metadata["og:url"].Value()

Misc

The original url used to generate the OpenGraph data is available from the OriginalUrl property graph.OriginalUrl.

Creating OpenGraph Data

To create OpenGraph data in memory use the following code:

var graph = OpenGraph.MakeGraph(
    title: "My Title", 
    type: "website", 
    image: "http://example.com/img/img1.png", 
    url: "http://example.com/home", 
    description: "My Description", 
    siteName: "Example.com");
graph.AddMetadata("og", "image", "http://example.com/img/img2.png");
graph.Metadata["og:image"][0].AddProperty("width", "30");
graph.Metadata["og:image"][1].AddProperty("width", "60");
System.Console.Write(graph.ToString());

The previous System.Console.Write(graph.ToString()); will produce the following HTML (formatting added for legibility):

<meta property="og:title" content="My Title">
<meta property="og:type" content="website">
<meta property="og:image" content="http://example.com/img/img1.png">
<meta property="og:image:width" content="30">
<meta property="og:image" content="http://example.com/img/img2.png">
<meta property="og:image:width" content="60">
<meta property="og:url" content="http://example.com/home">
<meta property="og:description" content="My Description">
<meta property="og:site_name" content="Example.com">
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on OpenGraph-Net:

Package Downloads
RestCms.Api.NETCore

This is the main REST CMS API package. This package contains initialization code, controllers, filters and core middleware required to run the REST CMS client API.

Zen.Web.App

WebApp-related abstration layer for Zen

Wechaty

dotnet wechaty

ImageWizard.OpenGraph

Image processing middleware based on ASP.NET and ImageSharp / SkiaSharp / SvgNet.

DotNet6.Wechaty

dotnet wechaty

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.0.2-alpha.0.6 3,518 11/14/2022
4.0.1 121,262 8/12/2022
4.0.1-alpha.0.3 101 8/12/2022
4.0.1-alpha.0.2 108 8/12/2022
4.0.1-alpha.0.1 104 8/12/2022
4.0.0 856 8/12/2022
3.2.9-alpha.0.21 99 8/12/2022
3.2.9-alpha.0.20 97 8/12/2022
3.2.9-alpha.0.16 99 8/12/2022
3.2.9-alpha.0.15 99 8/12/2022
3.2.9-alpha.0.14 98 8/12/2022
3.2.9-alpha.0.10 99 8/12/2022
3.2.9-alpha.0.4 854 7/27/2021
3.2.9-alpha.0.3 202 7/27/2021
3.2.9-alpha.0.2 208 7/27/2021
3.2.8 121,085 7/27/2021
3.2.7 4,205 6/8/2021
3.2.7-alpha.0.40 146 6/8/2021
3.2.7-alpha.0.39 144 6/8/2021
3.2.7-alpha.0.38 149 6/8/2021
3.2.7-alpha.0.37 146 6/8/2021
3.2.7-alpha.0.35 154 6/8/2021
3.2.7-alpha.0.34 152 6/8/2021
3.2.6 30,405 1/28/2021
3.2.5 403 1/28/2021
3.2.4 67,429 3/24/2020
3.2.3 2,069 2/26/2020
3.2.2 546 2/26/2020
3.2.1 15,910 2/7/2020
3.2.0 14,039 6/15/2019
3.1.2 41,634 3/16/2019
3.1.1 852 2/28/2019
3.1.0 2,026 1/18/2019
3.0.0 13,519 12/5/2018
2.2.0 33,284 5/10/2018
2.0.0 1,284 5/2/2018
1.3.4 60,932 8/17/2016
1.3.3 1,167 8/16/2016
1.3.2 1,248 8/15/2016
1.3.1 1,249 8/15/2016
1.3.0.1 6,389 6/30/2016
1.2.0.1 8,174 4/2/2013

Bug fixes