Skip to content

Commit

Permalink
Change meetup /members URL.
Browse files Browse the repository at this point in the history
Apparently secure.meetup.com doesn't work anymore.
  • Loading branch information
Emily Stark committed Aug 20, 2014
1 parent 5faf65e commit 8f724b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/meetup/meetup_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ var getAccessToken = function (query) {
var getIdentity = function (accessToken) {
try {
var response = HTTP.get(
"https://secure.meetup.com/2/members",
"https://api.meetup.com/2/members",
{params: {member_id: 'self', access_token: accessToken}});
return response.data.results && response.data.results[0];
} catch (err) {
Expand Down

0 comments on commit 8f724b5

Please sign in to comment.