https://github.com/jplane/meetup-randomatic
An Azure Function implementation for picking random Meetup attendees, for prize giveaways, heckling, etc.
https://github.com/jplane/meetup-randomatic
Last synced: about 1 year ago
JSON representation
An Azure Function implementation for picking random Meetup attendees, for prize giveaways, heckling, etc.
- Host: GitHub
- URL: https://github.com/jplane/meetup-randomatic
- Owner: jplane
- Created: 2017-08-16T12:14:12.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-16T12:24:26.000Z (almost 9 years ago)
- Last Synced: 2025-02-02T05:25:36.728Z (over 1 year ago)
- Language: C#
- Size: 1.95 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# meetup-randomatic
An Azure Function implementation for picking random Meetup attendees, for prize giveaways, heckling, etc.
To use:
1. go to https://www.meetup.com/meetup_api/ to create a Meetup.com API key (if you don't already have one)
1. create a new Azure Function with the code from run.csx in this repository
1. add a "meetupName" (no quotes) configuration value to your function app, with the unique URL suffix of your meetup (http://www.meetup.com/YOUR-UNIQUE-SUFFIX) just the suffix, not the whole URL
1. add a "meetupKey" (no quotes) configuration value to your function app, with your API key
1. you can test the API by POST-ing JSON with the date of the meetup event you want to randomize attendees for, like this:
{ 'date': '5/5/2015' }
1. profit!