I managed to get it working by changing the following in the config.js file:
Instead of the base path FB_URL and the specific paths export.path, I had to have a specific path FB_URL. It works:
exports.FB_URL = 'https://my-instance.firebaseio.com/gmail-com';
exports.paths = [
{
path: "Posts",
index: "firebase",
type: "message",
}
];
It does not mean:
exports.FB_URL = 'https://my-instance.firebaseio.com';
exports.paths = [
{
path: "gmail-com/Posts",
index: "firebase",
type: "message",
}
];
I do not know why...
source
share