Having issues while loading the ExtJS based app with google feeds api

1.3k Views Asked by At

Having issues while loading my app which is based on ExtJS and using Sencha 5.1.3.61. The problem seems to be in this file ext/packages/ux/src/google/Feeds.js.

Getting this error on app launch..

"?file=feeds&v=1.x&output=nocss%3Dtrue&async=2:1 Uncaught Error: Module:'feeds' not found!"

Any solution or work around can be helpful!!

2

There are 2 best solutions below

0
Naveen Yadav On BEST ANSWER

Issue got resolved by replacing requiresGoogle : {...} with _requiresGoogle : {...}. Thats it.

Source : https://www.sencha.com/forum/showthread.php?334652-Google-Feed-API-deprecated/page2 .

1
CD.. On

You can try overriding it, like:

Ext.define('Fiddle.ux.google.Feeds', {
    override: 'Ext.ux.google.Feeds',

    requiresGoogle: {}
});