Skip to content

Commit 963f69d

Browse files
committed
fix: using correct Twitter authorize URL so that user only has to authorize the app on the first login
1 parent 8730230 commit 963f69d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

api/provider/twitter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616

1717
const (
1818
requestURL = "https://api.twitter.com/oauth/request_token"
19-
authorizeURL = "https://api.twitter.com/oauth/authorize"
19+
authorizeURL = "https://api.twitter.com/oauth/authenticate"
2020
tokenURL = "https://api.twitter.com/oauth/access_token"
2121
endpointProfile = "https://api.twitter.com/1.1/account/verify_credentials.json"
2222
)

0 commit comments

Comments
 (0)