Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions .github/images/stackit-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">
<br>
<img src="img/stackit-logo.png" alt="STACKIT logo" width="50%"/>
<img src=".github/images/stackit-logo.svg" alt="STACKIT logo" width="50%"/>
<br>
<br>
</div>
Expand Down Expand Up @@ -40,10 +40,11 @@ Each language implementation demonstrates the same core functionality while foll

### Key concepts

- **Redirect Token**: The Redirect Token, or simply token, is the JWT Token sent to the vendors when the STACKIT Marketplace redirects consumers to the vendor's `Sign Up/Login` page, which happens in the process of creating a subscription (see [SaaS Frontend Integration](https://docs.stackit.cloud/stackit/en/4-2-saas-frontend-integration-339673765.html) for more details).
- **Redirect Token**: The Redirect Token, or simply token, is the JWT Token sent to the vendors when the STACKIT Marketplace redirects consumers to the vendor's `Sign Up/Login` page, which happens in the process of creating a subscription (see [SaaS Integration](https://docs.stackit.cloud/stackit/en/4-2-saas-frontend-integration-339673765.html) for more details).

## Additional Resources

- [Public Marketplace](https://marketplace.stackit.cloud/en/catalog)
- [STACKIT Marketplace Documentation](https://docs.stackit.cloud/stackit/en/stackit-marketplace-322109923.html)
- [API Reference](https://docs.api.stackit.cloud/documentation/stackit-marketplace/version/v1)

Expand Down
6 changes: 3 additions & 3 deletions go/go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
module github.com/stackitcloud/marketplace-reference-code

go 1.24.2
go 1.25.3

require (
github.com/golang-jwt/jwt/v5 v5.3.0
github.com/stackitcloud/stackit-sdk-go/services/stackitmarketplace v1.7.1
github.com/stackitcloud/stackit-sdk-go/services/stackitmarketplace v1.17.1
)

require (
github.com/google/uuid v1.6.0 // indirect
github.com/stackitcloud/stackit-sdk-go/core v0.17.3 // indirect
github.com/stackitcloud/stackit-sdk-go/core v0.20.0 // indirect
)
4 changes: 4 additions & 0 deletions go/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ github.com/stackitcloud/stackit-sdk-go/core v0.17.2 h1:jPyn+i8rkp2hM80+hOg0B/1EV
github.com/stackitcloud/stackit-sdk-go/core v0.17.2/go.mod h1:8KIw3czdNJ9sdil9QQimxjR6vHjeINFrRv0iZ67wfn0=
github.com/stackitcloud/stackit-sdk-go/core v0.17.3 h1:GsZGmRRc/3GJLmCUnsZswirr5wfLRrwavbnL/renOqg=
github.com/stackitcloud/stackit-sdk-go/core v0.17.3/go.mod h1:HBCXJGPgdRulplDzhrmwC+Dak9B/x0nzNtmOpu+1Ahg=
github.com/stackitcloud/stackit-sdk-go/core v0.20.0 h1:4rrUk6uT1g4nOn5/g1uXukP07Tux/o5xbMz/f/qE1rY=
github.com/stackitcloud/stackit-sdk-go/core v0.20.0/go.mod h1:fqto7M82ynGhEnpZU6VkQKYWYoFG5goC076JWXTUPRQ=
github.com/stackitcloud/stackit-sdk-go/services/stackitmarketplace v1.4.0 h1:wpr8GOCvn2JUdFeYccODdVAT8DuaCjUjBpos5PtM1gw=
github.com/stackitcloud/stackit-sdk-go/services/stackitmarketplace v1.4.0/go.mod h1:m4K+LH42YHmet1SbypzCOWjg/1pAIWtCT2AbGNJ+lr8=
github.com/stackitcloud/stackit-sdk-go/services/stackitmarketplace v1.7.1 h1:hIP6KkOEXgYbobubmz/7gL95z1ZU2Q8XGTFiEBFy6Ls=
github.com/stackitcloud/stackit-sdk-go/services/stackitmarketplace v1.7.1/go.mod h1:UqCozeGK2nbEqlTwZDrLrIhpHxksQRDbp4/A/mKLgn8=
github.com/stackitcloud/stackit-sdk-go/services/stackitmarketplace v1.17.1 h1:mUyKBZtAQy2SqegRBR94s1mkV2qry21v9FOwsiRrwsc=
github.com/stackitcloud/stackit-sdk-go/services/stackitmarketplace v1.17.1/go.mod h1:O8QoM9bvgL8HKqI8MhItXlUT2RsjcuZJbUgFaatOJoY=
Loading