Reputation: 631
I never seen this kind of error in console:
Received message of type object from http://mysiteDotcome, expected a string all.js:56
Received message of type object from http://mysiteDOTcom, expected a string
my app work fine but I still curious about this errors, any idea?
Upvotes: 1
Views: 4088
Reputation: 10377
I was having the same problem, and here you can read a solution, at least it works for me :) Gigya websites throw an error: Received message of type object from (domain), expected a string - all.js:56
the problem was the FVD Downloader extension.
Upvotes: 1
Reputation: 36000
It says that in your javascript, a string value is expected in return, but an object is found. This means your Accept
header has something like text/plain
.
Upvotes: 0