C# Class Tumblr.Universal.Core.TumblrClient

Global Tumblr Library object.
Mostrar archivo Open project: Karn/Tumblr.Universal

Private Properties

Property Type Description

Public Methods

Method Description
RetrieveRawResponse ( string endpoint ) : string
TumblrClient ( string publicKey, string secretKey ) : System

Registers API keys to grant access to the API endpoints.

UpdateAccessToken ( string token, string tokenSecret ) : void

Registers tokens recieved from authenticated request.

Method Details

RetrieveRawResponse() public method

public RetrieveRawResponse ( string endpoint ) : string
endpoint string
return string

TumblrClient() public method

Registers API keys to grant access to the API endpoints.
public TumblrClient ( string publicKey, string secretKey ) : System
publicKey string The API/consumer key.
secretKey string The associated client secret key.
return System

UpdateAccessToken() public static method

Registers tokens recieved from authenticated request.
public static UpdateAccessToken ( string token, string tokenSecret ) : void
token string The authenticated token.
tokenSecret string The associated secret token.
return void