You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
392 B

// Package tumblr provides constants for using OAuth 1 to access Tumblr.
package tumblr
import (
"github.com/dghubble/oauth1"
)
// Endpoint is Tumblr's OAuth 1a endpoint.
var Endpoint = oauth1.Endpoint{
RequestTokenURL: "http://www.tumblr.com/oauth/request_token",
AuthorizeURL: "http://www.tumblr.com/oauth/authorize",
AccessTokenURL: "http://www.tumblr.com/oauth/access_token",
}