Ionic feed proplem

Hi,

i use this code and was working good but now not working

    $scope.news= [];
    var url = "http://www.almalnews.com/Rss/RSS.xml";
    var google_converter = "http://ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=50&callback=JSON_CALLBACK&q=";
    var request = $http.jsonp(google_converter + encodeURIComponent(url));
    request.success(function (res) {
        $scope.news= res.responseData.feed.entries;
    })

i think because google now not support feed api
this true or false?
any idea to solved this code and working again?
thanks,