如何以脚本而非应用程序的身份访问Instagram API?

时间:2015-12-05 07:17:07

标签: api oauth instagram

有很多关于如何创建应用程序的文档,并使用OAuth授权您的应用程序用户访问Instagram ...但我没有第三方用户。我只想脚本访问API以获取数据,我可以使用Twitter或Reddit。

我错过了一些明显的东西吗?

1 个答案:

答案 0 :(得分:0)

你可以这样使用。在这里,我从标签中获取所有数据。 访问link以获取更多信息。

$(document).ready(function () {  
    var hashtag = 'dilwale'// My hash tag  
    var accessToken = '16741082.1b07669.121a338d0cbe4ff6a5e04543158a4f82' //Write your access token  
    $.ajax({  
        url: 'https://api.instagram.com/v1/tags/' + hashtag + '/media/recent?count=33&access_token='+ accessToken +'',  
        dataType: 'jsonp',  
        type: 'GET',  
        success: function (data) {  
            console.log(data);  
            for (x in data.data) {  
                if (data.data[x].type == 'video') {  
                    //console.log("Video" + data.data[x].videos.standard_resolution.url);  
                    //See the browser console and add data as per requirements  
                    $('.instagram').append('<div style="border:1px solid orange"><video controls><source src="' + data.data[x].videos.standard_resolution.url + '" type="video/mp4"></video><span style="border:1px solid orange; dislay:block">Test1</span></div>');  
                } else if (data.data[x].type == 'image') {  
                    $('.instagram').append('<div style="border:1px solid orange"><img src="' + data.data[x].images.standard_resolution.url + '" ><span style="border:1px solid orange; display:block">"' + data.data[x].caption.text + '"</span><span style="border:1px solid orange; dislay:block">Test1</span></div>');  
                    //console.log("Image");  
                    //See the browser console and add data as per requirements  
                }  
            }  
        },  
        error: function (data) {  
            console.log(data);  
        }  
    })  
}); 

在小提琴中找到解决方案Get latest images and videosfrom a hash tag