this repo has no description

one more fix

Changed files
+3 -3
cmd
web_server_demo
+3 -3
cmd/web_server_demo/handle_auth.go
···
"github.com/bluesky-social/indigo/atproto/syntax"
"github.com/gorilla/sessions"
-
oauth "github.com/haileyok/atproto-oauth-golang"
+
oauth_helpers "github.com/haileyok/atproto-oauth-golang/helpers"
"github.com/labstack/echo-contrib/session"
"github.com/labstack/echo/v4"
"gorm.io/gorm/clause"
···
return err
}
-
dpopPrivateKey, err := oauth.GenerateKey(nil)
+
dpopPrivateKey, err := oauth_helpers.GenerateKey(nil)
if err != nil {
return err
}
···
return fmt.Errorf("incoming iss did not match authserver iss")
}
-
jwk, err := oauth.ParseJWKFromBytes([]byte(oauthRequest.DpopPrivateJwk))
+
jwk, err := oauth_helpers.ParseJWKFromBytes([]byte(oauthRequest.DpopPrivateJwk))
if err != nil {
return err
}