-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"joined" date for membership in groups #67
Comments
we discussed it here: #20 |
@orchid00 Did you know that the meetup package has changed since then and now uses OAuth instead of a personal API key? I just want to check if that's the reason your solution is not working (instead of some other reason). @Athanasiamo In general, we don't want to change any of the field names from what Meetup API calls them (unless it's a real bug on their end, which we should probably tell them about and see if they can fix it on their end). One solution (if she can get it working again) is to create our own custom column created from @orchid00's |
hi @ledell thanks for your comment. So, I was trying this yesterday, I have many questions. I tried a lot of things.... First, yes I noticed the OAuth updates, It all worked well it asked me to login, and the Third, the little issue I encountered with the I tried this code
I don't know how to access an unnamed list in other ways, I tried tidyverse.... but only brackets will give me the list :( Then, as before, there's the list that From what I see meetup is using api2. I'm a bit ashamed that I ended up getting the data through manual scrapping from here: I hope I shared some light into the problem and someone could help me fix it. |
@orchid00 EDIT: This line added to get_members.R acquired the join date of a group member. Thanks for the tip! ADDED: I am using meetupr version 0.2.0 in R 3.6.1. |
Hey @orchid00 I don't have time to look at this right now, but I can try to look at it in about 2 weeks when I am done writing a paper. Please ping me on here in 2 weeks if you want me to get my attention again to take a look. :-) One quick question -- you said the following:
Does meetupr not work on R 4.0.0? If so, would you be willing to file an issue with more information (and error messages)? Thanks! |
Responding to rladies#67, this replaces the former Meetup API's use of "joined" with "created" to acquire "The time this member joined the Group, represented as milliseconds since the epoch" per https://www.meetup.com/meetup_api/docs/:urlname/members/#list.
The following is not a meetupr bug but a Meetup API bug: Placing this here before I forget, while working on this code for a presentation, I discovered that the argument "past" causes the Meetup API to return a future event if, as best as I can tell, the event has been rescheduled from a prior date to a future date. Note: Getting the list of attendance records for private groups is limited only to members of that group.
returns as of 5:30 AM Eastern on 6/30/2020:
This causes get_event_attendees to fail with a 400 error:
|
I needed to use the package for a presentation so I invite you to consider PR #71. |
Resolved by #71 |
I have been working a little with getting some dat for a presentation, and I realised that the "joined" date, as retrieved by the
get_members()
function, is the date a person joined meetup, not the date they joined the group.We might not have the date of joining group (I'm looking into the resource we get and see if I can parse it out), but i'm writing it down here so checking this is not forgotten.
And perhaps the "joined" column should be renamed to "joined_meetup", and if we find group joining, it could be named "joined_group"?
The text was updated successfully, but these errors were encountered: