It appears the ParseJson Faraday middleware your injecting is interfering with requests made from the Twitter gem in our case here. In this example the keys in the attrs Hash are meant to be Symbols rather than Strings which means the fetch errors out as it can't find a key name :id.
It appears the ParseJson Faraday middleware your injecting is interfering with requests made from the Twitter gem in our case here. In this example the keys in the
attrs
Hash are meant to be Symbols rather than Strings which means thefetch
errors out as it can't find a key name:id
.