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
CriteoKB explorer now returns the sources as part of an Item object in the response. sources is an array, which results in an unmarshalling error when trying to map the response to a QueryResponse object:
I believe that we must either make the Items member of the response an [][]interface{} or make the Items a map[string]interface{} and then implement the adequate changes to the affected methods.
go-graphkb/internal/client/query.go
Line 40 in 248e436
CriteoKB explorer now returns the sources as part of an Item object in the response.
sources
is an array, which results in an unmarshalling error when trying to map the response to aQueryResponse
object:go-graphkb/internal/client/types.go
Line 40 in 248e436
I believe that we must either make the Items member of the response an
[][]interface{}
or make theItems
amap[string]interface{}
and then implement the adequate changes to the affected methods.@ShimmerGlass
The text was updated successfully, but these errors were encountered: