Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions ada-project-docs/wave_04.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,13 @@ Our Slackbot token is an API key that needs to be protected.

Include your Slackbot token in your code in an intentional way, following best practices about API keys in code bases.

#### Tips
### Requirement: Use Python package `requests` to make HTTP calls

Remember to import this package

- Utilize the Python package `requests`!
- Remember to import this package
- Consider using the keyword argument `data`, `json`, and/or `headers`
Consider using the keyword argument `data`, `json`, and/or `headers`

#### Tips
- Remember to put your Slackbot token in your code in an intentional way, following best practices about API keys in code bases.
- In order to get the value of an environment variable, use `os.environ.get()`, just as we used it for the database configuration.
- Use your work from the Slack API documentation, the Slack tester, and Postman to guide your implementation.
Expand Down