Merge branch '2-use-oauth-server-for-service-to-service-authentication' into 'main'
Issue token from OAuth server and pass it along with HTTP requests Closes #2 See merge request gaia-x/data-infrastructure-federation-services/tsa/task!1
No related branches found
No related tags found
Showing
- cmd/task/main.go 20 additions, 2 deletionscmd/task/main.go
- go.mod 3 additions, 0 deletionsgo.mod
- go.sum 4 additions, 0 deletionsgo.sum
- internal/config/config.go 7 additions, 0 deletionsinternal/config/config.go
- vendor/golang.org/x/net/LICENSE 0 additions, 0 deletionsvendor/golang.org/x/net/LICENSE
- vendor/golang.org/x/net/PATENTS 0 additions, 0 deletionsvendor/golang.org/x/net/PATENTS
- vendor/golang.org/x/net/context/context.go 0 additions, 0 deletionsvendor/golang.org/x/net/context/context.go
- vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go 0 additions, 0 deletionsvendor/golang.org/x/net/context/ctxhttp/ctxhttp.go
- vendor/golang.org/x/net/context/go17.go 0 additions, 0 deletionsvendor/golang.org/x/net/context/go17.go
- vendor/golang.org/x/net/context/go19.go 0 additions, 0 deletionsvendor/golang.org/x/net/context/go19.go
- vendor/golang.org/x/net/context/pre_go17.go 0 additions, 0 deletionsvendor/golang.org/x/net/context/pre_go17.go
- vendor/golang.org/x/net/context/pre_go19.go 0 additions, 0 deletionsvendor/golang.org/x/net/context/pre_go19.go
- vendor/golang.org/x/oauth2/.travis.yml 0 additions, 0 deletionsvendor/golang.org/x/oauth2/.travis.yml
- vendor/golang.org/x/oauth2/AUTHORS 0 additions, 0 deletionsvendor/golang.org/x/oauth2/AUTHORS
- vendor/golang.org/x/oauth2/CONTRIBUTING.md 0 additions, 0 deletionsvendor/golang.org/x/oauth2/CONTRIBUTING.md
- vendor/golang.org/x/oauth2/CONTRIBUTORS 0 additions, 0 deletionsvendor/golang.org/x/oauth2/CONTRIBUTORS
- vendor/golang.org/x/oauth2/LICENSE 0 additions, 0 deletionsvendor/golang.org/x/oauth2/LICENSE
- vendor/golang.org/x/oauth2/README.md 0 additions, 0 deletionsvendor/golang.org/x/oauth2/README.md
- vendor/golang.org/x/oauth2/clientcredentials/clientcredentials.go 0 additions, 0 deletions...olang.org/x/oauth2/clientcredentials/clientcredentials.go
- vendor/golang.org/x/oauth2/internal/client_appengine.go 0 additions, 0 deletionsvendor/golang.org/x/oauth2/internal/client_appengine.go
... | ... | @@ -12,6 +12,7 @@ require ( |
go.mongodb.org/mongo-driver v1.8.4 | ||
go.uber.org/zap v1.21.0 | ||
goa.design/goa/v3 v3.8.5 | ||
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b | ||
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 | ||
) | ||
... | ... | @@ -48,9 +49,11 @@ require ( |
go.uber.org/multierr v1.6.0 // indirect | ||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect | ||
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect | ||
golang.org/x/net v0.0.0-20220802222814-0bcc04d9c69b // indirect | ||
golang.org/x/sys v0.0.0-20220803195053-6e608f9ce704 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/tools v0.1.12 // indirect | ||
google.golang.org/appengine v1.6.6 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
vendor/golang.org/x/net/LICENSE
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
vendor/golang.org/x/net/PATENTS
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
vendor/golang.org/x/net/context/context.go
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
vendor/golang.org/x/net/context/go17.go
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
vendor/golang.org/x/net/context/go19.go
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
vendor/golang.org/x/net/context/pre_go17.go
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
vendor/golang.org/x/net/context/pre_go19.go
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
vendor/golang.org/x/oauth2/.travis.yml
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
vendor/golang.org/x/oauth2/AUTHORS
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
vendor/golang.org/x/oauth2/CONTRIBUTING.md
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
vendor/golang.org/x/oauth2/CONTRIBUTORS
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
vendor/golang.org/x/oauth2/LICENSE
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
vendor/golang.org/x/oauth2/README.md
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
Please register or sign in to comment