I've been trying to use the Google API for freebase, and even though I'm following the correct call as per the documentation, it seems like there is an issue. The Chrome debugger is showing that something is wrong with this supposedly simple call.
var request = gapi.client.request({'path':'freebase/v1/topic/m/0nx5r',
'method':'GET'});
The error message displayed in the JavaScript debugger is quite confusing:
I have double-checked everything and I am confident that my approach is right. Can someone figure out what's causing this problem? Here is the link for reference on how this call should work.