How to consume web services in Sencha Touch 2.2

1k Views Asked by At

am new to Sencha Touch. I tried to consume web service but its keeps saying "Unable to load data using the supplied configuration.Open in Browser". My store is

Ext.define('MyApp.store.MyJsonPStore', {
    extend: 'Ext.data.Store',

    requires: [
        'MyApp.model.MyModel'
    ],

    config: {
        autoLoad: true,
        model: 'MyApp.model.MyModel',
        storeId: 'MyJsonPStore',
        proxy: {
            type: 'jsonp',
            url: 'http://api.twitter.com/1/statuses/public_timeline.json',
            reader: {
                type: 'json',
                rootProperty: 'errors'
            }
        }
    }
});

and my model is

Ext.define('MyApp.model.MyModel', {
    extend: 'Ext.data.Model',

    config: {
        fields: [
            {
                name: 'message'
            },
            {
                name: 'code'
            }
        ]
    }
});

Thanks for your help in advance.

1

There are 1 best solutions below

1
On

Ext.define('MyApp.store.MyJsonPStore', { extend: 'Ext.data.Store',

requires: [
    'MyApp.model.MyModel'
],

config: {
    autoLoad: true,
    model: 'MyApp.model.MyModel',
    storeId: 'MyJsonPStore',
    proxy: {
        type: 'jsonp',
        /*url: 'http://api.twitter.com/1/statuses/public_timeline.json',*/Url not valid
        reader: {
            type: 'json',
            rootProperty: 'errors'
        }
    }
}

});