oauth2/instagram/instagram.go

17 lines
530 B
Go
Raw Normal View History

2018-07-24 07:04:26 -04:00
// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2018-07-24 07:17:30 -04:00
// Package instagram provides constants for using OAuth2 to access Instagram.
2018-07-24 07:04:26 -04:00
package instagram // import "golang.org/x/oauth2/instagram"
import (
"golang.org/x/oauth2"
)
2018-07-24 07:17:30 -04:00
// Endpoint is Instagram's OAuth 2.0 endpoint.
2018-07-24 07:04:26 -04:00
var Endpoint = oauth2.Endpoint{
AuthURL: "https://api.instagram.com/oauth/authorize",
TokenURL: "https://api.instagram.com/oauth/access_token",
}