...

Package twitter

import "github.com/dghubble/oauth1/twitter"
Overview
Index

Overview ▾

Package twitter provides constants for using OAuth1 to access Twitter.

Index ▾

Package files

twitter.go

Variables

var AuthenticateEndpoint = oauth1.Endpoint{
    RequestTokenURL: "https://api.twitter.com/oauth/request_token",
    AuthorizeURL:    "https://api.twitter.com/oauth/authenticate",
    AccessTokenURL:  "https://api.twitter.com/oauth/access_token",
}

AuthenticateEndpoint is Twitter's OAuth 1 endpoint which uses the oauth/authenticate AuthorizeURL redirect. Logged in users who have granted access are immediately authenticated and redirected to the callback URL.

var AuthorizeEndpoint = oauth1.Endpoint{
    RequestTokenURL: "https://api.twitter.com/oauth/request_token",
    AuthorizeURL:    "https://api.twitter.com/oauth/authorize",
    AccessTokenURL:  "https://api.twitter.com/oauth/access_token",
}

AuthorizeEndpoint is Twitter's OAuth 1 endpoint which uses the oauth/authorize AuthorizeURL redirect. Note that this requires users who have granted access previously, to re-grant access at AuthorizeURL. Prefer AuthenticateEndpoint over AuthorizeEndpoint if you are unsure.