From 2d643292768610cdb5896827270dcd4a71da3572 Mon Sep 17 00:00:00 2001 From: "a.lukinykh" Date: Tue, 24 Jul 2018 16:17:30 +0500 Subject: [PATCH] instagram: add Instagram endpoints --- instagram/instagram.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/instagram/instagram.go b/instagram/instagram.go index 2d9f9f7..75a74eb 100644 --- a/instagram/instagram.go +++ b/instagram/instagram.go @@ -2,14 +2,14 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package instagram provides constants for using OAuth2 to access instagram.com. +// Package instagram provides constants for using OAuth2 to access Instagram. package instagram // import "golang.org/x/oauth2/instagram" import ( "golang.org/x/oauth2" ) -// Endpoint is Instagram OAuth 2.0 endpoint. +// Endpoint is Instagram's OAuth 2.0 endpoint. var Endpoint = oauth2.Endpoint{ AuthURL: "https://api.instagram.com/oauth/authorize", TokenURL: "https://api.instagram.com/oauth/access_token",