Steven Penny

Results 251 comments of Steven Penny

I do not see a post URL in your comment

Is it possible to have a literal `FormFields` or `DictionaryList`? I dont see any examples here: - - I made one like this: ~~~d FormFields m; m["month"] = "March"; m["day"]...

Is it possible to have a literal `FormFields` or `DictionaryList`?

In Go, the type is defined like this: ~~~go map[string][]string ~~~ so each key can have multiple values. In practice I never really need that, but its an option. Then...

My main concern, is that you should be able to roundtrip with a string, and roundtrip with an object. Like this: ~~~go package main import ( "fmt" "net/url" ) func...

@AustinMCrane I did have this problem previously, but it was because I was doing several login attempts while developing my own login code. After about one day it went away....

I updated the link, should be fine now

please provide example URL

Here is a simpler method: ~~~go package main import ( "encoding/json" "github.com/256dpi/lungo" "go.mongodb.org/mongo-driver/bson" "log" "os" ) type post struct { Title string `bson:"title"` } func main() { opts := lungo.Options{...