Skip to content

Commit

Permalink
Update tumblr Endpoint URLs from http to https (dghubble#37)
Browse files Browse the repository at this point in the history
* Tumblr now supports HTTPS Endpoint URLs
* Fix use of http URLs now causing errors
  • Loading branch information
0xc0392b authored and bvuong committed Sep 16, 2021
1 parent 1b9976c commit b3643a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tumblr/tumblr.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

// 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",
RequestTokenURL: "https://www.tumblr.com/oauth/request_token",
AuthorizeURL: "https://www.tumblr.com/oauth/authorize",
AccessTokenURL: "https://www.tumblr.com/oauth/access_token",
}

0 comments on commit b3643a5

Please sign in to comment.