summaryrefslogtreecommitdiff
path: root/server/methods.js
blob: f91546ed3c04afe3416dd977fba254ca45bd85ad (plain)
1
2
3
4
5
6
7
8
9
10
Meteor.methods({
  getInstagramMedia: function () {
    this.unblock();
    return Meteor.http.call('GET', 'https://api.instagram.com/v1/users/self/media/recent', {
      'params': {
        'access_token': Meteor.user().services.instagram.accessToken
      }
    });
  }
});