JSFiddle - React, Tailwind, and code Playground

by NOVUSIDEA

HTML

<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/axios.min.js"></script>
<div id="app">{{ feed }}</div>

JavaScript

new Vue({
    el: '#app',
    data: {
    	feed: {}
    },
    mounted: function(){
    
    	this.getFeed();
    
    },
    methods: {
    	getFeed() {
        
        	// Make a request for a user with a given ID
            axios.get('https://www.instagram.com/explore/tags/gl%C3%A4serneeismanufaktur/?__a=1').then(function (response) {
            
                console.log(response);
                
            }).catch(function (error) {
            
                console.log(error);
                
            }).then(function () {
            
            
            
            });
        
        }
    }
});