-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f8f8973
commit 1f5c824
Showing
18 changed files
with
50 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
## [0.2.3](https://gitlab.loc/sdk-login/login-sdk-go/compare/v0.2.2...0.2.3) (2022-03-23) | ||
## [0.2.3](https://github.com/xsolla/login-sdk-go/compare/v0.2.2...0.2.3) (2022-03-23) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* **ci:** update nodejs image for release ([70d575a](https://gitlab.loc/sdk-login/login-sdk-go/commit/70d575a2d3a45557f5978d1531d7894e3da819d1)) | ||
* **ci:** update nodejs image for release ([70d575a](https://github.com/xsolla/login-sdk-go/commit/70d575a2d3a45557f5978d1531d7894e3da819d1)) | ||
|
||
## [0.2.1](https://gitlab.loc/sdk-login/login-sdk-go/compare/0.2.0...0.2.1) (2021-08-17) | ||
## [0.2.1](https://github.com/xsolla/login-sdk-go/compare/0.2.0...0.2.1) (2021-08-17) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* **docs:** add space in docs to trigger release ([cef68eb](https://gitlab.loc/sdk-login/login-sdk-go/commit/cef68eb65a97a38c59801fa9254a43888393fc74)) | ||
* **docs:** add space in docs to trigger release ([cef68eb](https://github.com/xsolla/login-sdk-go/commit/cef68eb65a97a38c59801fa9254a43888393fc74)) | ||
|
||
# [0.2.0](https://gitlab.loc/sdk-login/login-sdk-go/compare/v0.1.1...0.2.0) (2021-07-13) | ||
# [0.2.0](https://github.com/xsolla/login-sdk-go/compare/v0.1.1...0.2.0) (2021-07-13) | ||
|
||
|
||
### Features | ||
|
||
* add invalidation checking method ([5c35e6e](https://gitlab.loc/sdk-login/login-sdk-go/commit/5c35e6e8b11a9569b8c1197b7561abddfc7c5f58)) | ||
* add invalidation checking method ([5c35e6e](https://github.com/xsolla/login-sdk-go/commit/5c35e6e8b11a9569b8c1197b7561abddfc7c5f58)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ SDK поддерживает валидацию токенов со следую | |
package main | ||
|
||
import ( | ||
"gitlab.loc/sdk-login/login-sdk-go" | ||
"github.com/xsolla/login-sdk-go" | ||
"fmt" | ||
"os" | ||
) | ||
|
@@ -41,7 +41,7 @@ func main() { | |
package main | ||
|
||
import ( | ||
"gitlab.loc/sdk-login/login-sdk-go" | ||
"github.com/xsolla/login-sdk-go" | ||
"fmt" | ||
"os" | ||
) | ||
|
@@ -80,7 +80,7 @@ import ( | |
"fmt" | ||
"log" | ||
|
||
"gitlab.loc/sdk-login/login-sdk-go" | ||
"github.com/xsolla/login-sdk-go" | ||
) | ||
|
||
type YourClaims struct { | ||
|
@@ -116,7 +116,7 @@ import ( | |
"fmt" | ||
"log" | ||
|
||
"gitlab.loc/sdk-login/login-sdk-go" | ||
"github.com/xsolla/login-sdk-go" | ||
) | ||
|
||
type YourClaims struct { | ||
|
@@ -226,16 +226,16 @@ For ability testing application (replace Login API response with mockproxy) you | |
|
||
Возможна проблема загрузки: | ||
``` | ||
go get -u "gitlab.loc/sdk-login/login-sdk-go" | ||
go: downloading gitlab.loc/sdk-login/login-sdk-go v0.1.1 | ||
go get: gitlab.loc/sdk-login/[email protected]: verifying module: gitlab.loc/sdk-login/[email protected]: reading https://sum.golang.org/lookup/gitlab.loc/sdk-login/[email protected]: 410 Gone server response: not found: gitlab.loc/sdk-login/[email protected]: unrecognized import path "gitlab.loc/sdk-login/login-sdk-go": https fetch: Get "https://gitlab.loc/sdk-login/login-sdk-go?go-get=1": dial tcp: lookup gitlab.loc on 8.8.8.8:53: no such host | ||
go get -u "github.com/xsolla/login-sdk-go" | ||
go: downloading github.com/xsolla/login-sdk-go v0.1.1 | ||
go get: github.com/xsolla/[email protected]: verifying module: github.com/xsolla/[email protected]: reading https://sum.golang.org/lookup/github.com/xsolla/[email protected]: 410 Gone server response: not found: github.com/xsolla/[email protected]: unrecognized import path "github.com/xsolla/login-sdk-go": https fetch: Get "https://github.com/xsolla/login-sdk-go?go-get=1": dial tcp: lookup gitlab.loc on 8.8.8.8:53: no such host | ||
``` | ||
Причина: загрузка кода из приватного репозитория. <br> | ||
Для решения необходимо установить переменную GOPRIVATE следующим образом: | ||
``` | ||
go env -w GOPRIVATE=gitlab.loc/sdk-login/login-sdk-go | ||
go env -w GOPRIVATE=github.com/xsolla/login-sdk-go | ||
``` | ||
Для проверки необходимо выполнить: | ||
``` | ||
go get -u "gitlab.loc/sdk-login/login-sdk-go" | ||
go get -u "github.com/xsolla/login-sdk-go" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module gitlab.loc/sdk-login/login-sdk-go | ||
module github.com/xsolla/login-sdk-go | ||
|
||
go 1.16 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters