我需要在基于用户名和标签的网页上显示Instagram图像
环顾四周寻找这样的api之后,我无法找到哪些可以让我跟随
我可以使用两个单独的API调用来单独显示两个结果,但我不确定如何合并两个结果并根据最新图像显示它们。
基于angular和instgram API的示例 http://codepen.io/anon/pen/qdrBMQ?editors=001
我还看了instafeedjs
它允许基于UserAccount显示图像并根据标签过滤相同的结果
示例:http://codepen.io/anon/pen/NqpWER?editors=001
任何此类示例,我可以显示来自用户帐户+任何标记的图像。
答案 0 :(得分:1)
合并不应该太难:
var byUserUrl = 'https://api.instagram.com/v1/users/828057799/media/recent/?client_id=5e7cb176cc4340c09124d9f50733f34f&callback=JSON_CALLBACK';
//Search by tag
var byTagUrl ='https://api.instagram.com/v1/tags/flight/media/recent/?client_id=5e7cb176cc4340c09124d9f50733f34f&callback=JSON_CALLBACK';
app.controller("InstagramCtrl", function InstagramCtrl($scope, $http) {
$scope.photos = [];
$http.jsonp(byUserUrl).success(function(data) {
$scope.photos = $scope.photos.concat(data.data);
});
$http.jsonp(byTagUrl).success(function(data) {
$scope.photos = $scope.photos.concat(data.data);
});
});