I am trying to retrieve a list of open events in a certain category from meetup via api call through jQuery / JavaScript.
I entered the keys in the meetup console (https://secure.meetup.com/meetup_api/console/?path=/2/open_events) and receive a result that is workable. However, when I am trying to recreate the call on my website or even on hurl.it, I run into authentication problems.
The result is: "details": "API requests must be key-signed, oauth-signed, or accompanied by a key: http://www.meetup.com/meetup_api/docs/#authentication", "code": "not_authorized", "problem": "You are not authorized to make that request"
However, I am passing the authorization request as headers sign: true key: api key I received from meetup
I am confused when it comes to all the different forms of authentication that meetup wants or offers (api, oauth1, oauth2). I simply want to display the list of events to users of my site. What is the best way of going about that? What am I doing wrong?