0

I'm trying to query the Meetup API using meteor,i tried a Meteor package. when i call the function below i get this error. API requests must be key-signed,oauth-signed, or accompanied by a key:

 Meteor.methods({
      getGroups:function(){
        Meetup.get('2/events', {
        member_id: 'self',
        status: 'upcoming',
        rsvp: 'yes'
      }, {user: this.userId});
      }

    })

I used the accounts-meetup package ,and i auth successfuly.

Genjuro
  • 7,405
  • 7
  • 41
  • 61

1 Answers1

0

You need to provide in your request an access key https://secure.meetup.com/meetup_api/key/ . Also look here Modifying user.profile using Accounts.onCreateUser for loginWithMeetup

Community
  • 1
  • 1
Marius Darila
  • 873
  • 9
  • 13