antihax
antihax
It is definitely worth exploring. Could you not convert `url.Values{}` to JSON/XML for the body?
That looks like the way to go. We would get compile time type checking back. ``` type StringType struct{ val string set bool } func String(v string) StringType { return...
You can supply defaults: ``` { "name": "label_id", "in": "query", "description": "Add a custom label to the new contact", "required": false, "type": "integer", "format": "int64", "default": 0 }, ``` But...
I agree with the AWS way also, but let me know what you find.
I like the idea of unmarshaling the error into a model and returning it as an abstract of the error type. We could take that further and return a []byte...
updated based on review. I will see if i can figure out to submit to your repo.
For all running into this issue, see the workaround. You should only request the scopes you need and not everything and the kitchen sink. You can always expand upon later...
You will need to get the demo license from SAP. Unfortunately I do not recall where this was, but it was behind a logon screen and you will need an...
This should be handled by TokenSource in in the oauth2 go library, inspect to see if it changed when a new access token was created. https://pkg.go.dev/golang.org/x/oauth2#Token