-
Notifications
You must be signed in to change notification settings - Fork 1
Home
albertovilla edited this page Jan 10, 2012
·
11 revisions
Creating a Ruby application to apply to Parse through sending a POST to: https://www.parse.com/jobs/apply with the Content-Type set to application/json, and the body as valid JSON with the following keys:
name: String with your name (required)
email: String with your email address (required)
about: String describing why you think Parse is a great fit for you (required)
urls: Array of strings with relevant links to your resume, website, or your code samples (required)
Use the JSON gem: https://github.com/flori/json#readme to convert the Ruby object to JSON format
1. Format Applicant in JSON format > done
2. Implement http POST > done
3. Testing using webhookapp.com
4. Polish application and define tests