You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A website I'm trying to scrape with Colly relies on having multiple values by the same key. This is supported by url.Values and it's what createFormReader uses, but we're limited from using duplicate key values by forcing everything to be a map[string]string before making a url.Values.
The text was updated successfully, but these errors were encountered:
A website I'm trying to scrape with Colly relies on having multiple values by the same key. This is supported by
url.Values
and it's whatcreateFormReader
uses, but we're limited from using duplicate key values by forcing everything to be amap[string]string
before making aurl.Values
.The text was updated successfully, but these errors were encountered: