ziemekobel
ziemekobel
@wI2L It's 1.21 And here's the entire test code: ``` package lib_test import ( "encoding/json" "fmt" "testing" "github.com/wI2L/jettison" ) type Fields struct { AdditionalProperties map[string]string `json:"-"` } func (a Fields)...
Yeah, I can totally understand it. TBH I would use `goccy/go-json` if they had `FormatNilMapAsNull` implemented. Encoding/json v2 does have it implemented, but for now for our payloads it is...
@federicobozzini It turns out that you have to use a very specific issuer URL format: ```go provider, err := oidc.NewProvider(context.Background(), "https://yourname.b2clogin.com/tfp/yourtenantid/yourUserFlow/v2.0/") //REPLACE THIS WITH YOUR VALUE ``` Notice `tfp` and...