- 30 minutes of presentation/screenshare
- How it used to work
- How it works now
- What you aspire to improve going forward
- 15-30 mins of Q&A
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function flattenObject(oldObject) { | |
| const newObject = {}; | |
| flattenHelper(oldObject, newObject, ''); | |
| return newObject; | |
| function flattenHelper(currentObject, newObject, previousKeyName) { | |
| for (let key in currentObject) { | |
| let value = currentObject[key]; |
Initial implementation (social widget on SoulConnected)
This initial implementation is done via instagram's "Basic display API", and allows you to query your own instagram account for media, comments, user ID, and other basic fields. We will use it for ST-225 to display the official account's 4 most recent posts on the SoulConnected Page.
- Official SoulCycle Facebook account (to create the app)
- Official SoulCycle instagram account (to pull images from)