コード例 #1
0
ファイル: instagram.go プロジェクト: h4ckm03d/gomniauth
// GetClient returns an authenticated http.Client that can be used to make requests to
// protected Github resources
func (provider *InstagramProvider) GetClient(creds *common.Credentials) (*http.Client, error) {
	return oauth2.GetClient(provider.TripperFactory(), creds, provider)
}
コード例 #2
0
ファイル: hero.go プロジェクト: nguyenducnhaty/hero
// GetClient returns an authenticated http.Client that can be used to make requests to
// protected Github resources
func (h *HeroProvider) GetClient(creds *common.Credentials) (*http.Client, error) {
	return oauth2.GetClient(h.TripperFactory(), creds, h)
}