Quantcast
Channel: Ionic Forum - Latest posts
Viewing all articles
Browse latest Browse all 228595

How to use this in ionic?

$
0
0

You can post data using Parse REST API like this. Hope this helps.

$http({
    method: 'POST',
    url: 'https://api.parse.com/1/classes/shifts',
    data: {
          columnName: 'value',
          columnName: 'value'
    },
    headers: {
        'X-Parse-Application-Id': '',
        'X-Parse-REST-API-Key': '',

    }
})
.success(function (data, status) {

})
.error(function (data, status) {

});

Viewing all articles
Browse latest Browse all 228595

Trending Articles