Skip to content
forked from tansey/diffbot

A .NET library for the Diffbot Frontpage and Article APIs

Notifications You must be signed in to change notification settings

LatisVlad/diffbot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Diffbot API for .NET

The Diffbot API enables users to scrape structured frontpage summaries and full articles from sites. This library is a .NET wrapper around the API.

There are two APIs supported: Frontpage and Article.

Frontpage

Diffbot diff = new Diffbot("developer-token-here");
Frontpage frontpage = diff.Frontpage("cnn.com");

Article

Diffbot diff = new Diffbot("developer-token-here");
Article article = diff.Article("http://url-to.com/article/permalink/here/");

With Proxy

var proxy = = new WebProxy(@"proxy.somecompany.com", 911);
Diffbot diff = new Diffbot("developer-token-here", proxy);
Article article = diff.Article("http://url-to.com/article/permalink/here/");

About

A .NET library for the Diffbot Frontpage and Article APIs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%