Tumblr.NetStandard 3.5.3

dotnet add package Tumblr.NetStandard --version 3.5.3
NuGet\Install-Package Tumblr.NetStandard -Version 3.5.3
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="Tumblr.NetStandard" Version="3.5.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Tumblr.NetStandard --version 3.5.3
#r "nuget: Tumblr.NetStandard, 3.5.3"
#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 Tumblr.NetStandard as a Cake Addin
#addin nuget:?package=Tumblr.NetStandard&version=3.5.3

// Install Tumblr.NetStandard as a Cake Tool
#tool nuget:?package=Tumblr.NetStandard&version=3.5.3

Tumblr.NetStandard

A .NET Standard library for the Tumblr API

Create a new client - OAuth2

//Unauthorised client
var credentials = new TumblrClientCredentials(clientId);
var client = new TumblrClient(credentials);

//authorisedClient
var client = new TumblrClient(credentials, new TumblrOAuth2Credentials(accessToken));

Create a new client - OAuth1

//Unauthorised client
var credentials = new TumblrClientCredentials(id,secret);
var client = new TumblrClient(credentials);

//authorisedClient
var client = new TumblrClient(credentials, tumblrCredentials);

OAuth2 Helper Methods

//View an authorize url
LoginView.Source = OAuth2.BuildAuthorizeUri(
    ClientId,
    $"{OAuth2.Scopes.Basic} {OAuth2.Scopes.Write} {OAuth2.Scopes.OfflineAccess}",
    CurrentState);

//Use authorize token to get access token
var content = OAuth2.BuildAuthTokenForm(ClientId, ClientSecret, code);
var client = new HttpClient();
var response = await client.PostAsync(OAuth2.TokenUrl,content);
var detail = await response.Content.ReadAsStringAsync();

OAuth1 Helper methods

 var authorizer = new OAuthAuthorizer(credentials);

 // get request token
 var tokenResponse = await authorizer.GetRequestToken("https://www.tumblr.com/oauth/request_token");

 var startUri = new Uri(authorizer.BuildAuthorizeUrl("https://www.tumblr.com/oauth/authorize", tokenResponse.Token));

 //...Use system to get authorise token and oauth_verifier whichever way works for your interface...

 var accessToken = await authorizer.GetAccessToken("https://www.tumblr.com/oauth/access_token",new RequestToken(authorisedToken, tokenSecret), oauthVerifier);
 return new TumblrCredentials(accessToken.Token.Key, accessToken.Token.Secret);

Getting Posts

var posts = await client.ForBlog("staff.tumblr.com").Posts();

Liking a post

var liked = await client.ForPost(post).Like();

Returning Legacy Post types

    Client.ReturnNpfPostLists = false;
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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.5.3 345 12/2/2022
3.5.2 438 4/3/2022
3.2.0 370 2/3/2021
3.1.2 448 6/11/2020
3.1.1 427 6/11/2020
3.1.0 414 6/2/2020
3.0.2 446 5/26/2020
3.0.1 494 5/25/2020
3.0.0 484 5/2/2020
2.1.9 803 9/11/2018
2.1.8 764 9/11/2018
2.1.5 726 9/7/2018
2.1.2 763 9/7/2018
2.0.0 766 9/5/2018
1.0.0 790 9/3/2018

Add extended post properties