Magento 2: How to get likes and comments count through instagram api

I am trying to get number of likes and comments using the code below but it doesn’t work. It is showing caption but doesnt show number of likes or comments:

I tried using the fields like_count and comments_count as provided here: https://developers.facebook.com/docs/instagram-api/reference/ig-media/ but it is not working.

 * Mageplaza
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Mageplaza.com license that is
 * available through the world-wide-web at this URL:
 * https://www.mageplaza.com/LICENSE.txt
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade this extension to newer
 * version in the future.
 *
 * @category    Mageplaza
 * @package     Mageplaza_InstagramFeed
 * @copyright   Copyright (c) Mageplaza (https://www.mageplaza.com/)
 * @license     https://www.mageplaza.com/LICENSE.txt
 */
define([
    "jquery",
    "Mageplaza_InstagramFeed/js/lib/shuffle.min",
    "Mageplaza_InstagramFeed/js/lib/imagesloaded.pkgd.min",
    "mageplaza/core/jquery/popup"
], function ($, Shuffle) {
    "use strict";
    $.widget("mageplaza.instagram", {
        options: {
            id: "",
            token: "",
            count: "",
            sort: "",
            image_resolution: "",
            layout: "",
            show_like_comment: 0,
            show_popup: 0
        },
        _create: function () {
            this._ajaxSubmit();
        },

        showPopup: function (id) {
            $(id).magnificPopup({
                delegate: ".mpinstagramfeed-photo a",
                type: "image",
                gallery: {enabled: true},
                closeOnContentClick: true,
                closeBtnInside: false,
                fixedContentPos: true,
                mainClass: "mfp-no-margins mfp-with-zoom", // class to remove default margin from left and right side
                image: {
                    verticalFit: true
                },
                zoom: {
                    enabled: true,
                    duration: 300 // don't forget to change the duration also in CSS
                }
            });
        },

        _ajaxSubmit: function () {
            var self = this,
                id = "#mpinstagramfeed-photos-" + this.options.id,
                captionHtml = this.options.show_caption === '1' ? '<div class="mpinstagramfeed-post-caption">{{caption}}</div>' : '',
                photo_Template = '<div class="mpinstagramfeed-photo">' +
                '<a class="mpinstagramfeed-post-url " href="{{link}}" target="_blank">' +
                    captionHtml +
                '<img class="mpinstagramfeed-image" src="{{imgSrc}}" alt="">' +
                '</a></div>';
            $.ajax({
                url: "https://graph.instagram.com/me/media",
                data: {
                    access_token: this.options.token,
                    fields: 'id, caption, media_type, media_url, permalink, comments_count, like_count'
                },
                dataType: "json",
                type: "GET",
                success: function (data) {
                    var Image_url, item_Link,
                        items = data.data,
                        count = 0;
                    $.each(items, function (index, item) {
                        if (count >= parseInt(self.options.count)) {
                            return false;
                        }
                        if (item.media_type === 'VIDEO') {
                            return;
                        }

                        console.log('testingsss');
                        console.log(item.like_count);

                        Image_url = item.media_url;
                        if (self.options.show_popup === "1") {
                            item_Link = Image_url;
                        } else {
                            item_Link = item.permalink;
                        }

                        var photo_Temp = photo_Template
                        .replace("{{link}}", item_Link)
                        .replace("{{caption}}", item.caption ? item.caption : '')
                        .replace("{{imgSrc}}", Image_url);

                        $(id).append(photo_Temp);
                        count++;
                    });
                },
                complete: function (data) {
                    // use shuffle after load images
                    if (self.options.layout === "optimized") {
                        self.demo(id);
                    }
                    if (self.options.show_popup === "1") {
                        self.showPopup(id);
                    }
                },
                error: function (data) {
                    console.log(data);
                }
            });
        },

        demo: function (id) {
            var element = document.querySelector(id);
            $(element).imagesLoaded().done(function (instance) {
                this.shuffle = new Shuffle(element, {
                    itemSelector: '.mpinstagramfeed-photo'
                });
            });
        }
    });

    return $.mageplaza.instagram;
});