We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1f3d5c commit 9eebf9cCopy full SHA for 9eebf9c
1 file changed
api/provider/twitter.go
@@ -16,7 +16,7 @@ import (
16
17
const (
18
requestURL = "https://api.twitter.com/oauth/request_token"
19
- authorizeURL = "https://api.twitter.com/oauth/authenticate"
+ authenticateURL = "https://api.twitter.com/oauth/authenticate"
20
tokenURL = "https://api.twitter.com/oauth/access_token"
21
endpointProfile = "https://api.twitter.com/1.1/account/verify_credentials.json"
22
)
@@ -109,7 +109,7 @@ func newConsumer(provider *TwitterProvider) *oauth.Consumer {
109
provider.Secret,
110
oauth.ServiceProvider{
111
RequestTokenUrl: requestURL,
112
- AuthorizeTokenUrl: authorizeURL,
+ AuthorizeTokenUrl: authenticateURL,
113
AccessTokenUrl: tokenURL,
114
})
115
return c
0 commit comments