Skip to content

Commit 594d01e

Browse files
committed
Removes references to ACCESS_KEY in README.md. Replaces with YOUR_ACCESS_KEY.
1 parent 2164f92 commit 594d01e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import messagebird
3535
Then, create an instance of **messagebird.Client**:
3636

3737
```python
38-
client = messagebird.Client('test_gshuPaZoeEG6ovbc8M79w0QyM')
38+
client = messagebird.Client('YOUR_ACCESS_KEY')
3939
```
4040

4141
Now you can query the API for information or send a request. For example, if we want to request our balance information you'd do something like this:
@@ -83,7 +83,7 @@ Conversations WhatsApp Sandbox
8383
To use the whatsapp sandbox you need to add `messagebird.Feature.ENABLE_CONVERSATIONS_API_WHATSAPP_SANDBOX` to the list of features you want enabled. Don't forget to replace `YOUR_ACCESS_KEY` with your actual access key.
8484

8585
```python
86-
client = messagebird.Client('1ekjMs368KTRlP0z6zfG9P70z', features=[messagebird.Feature.ENABLE_CONVERSATIONS_API_WHATSAPP_SANDBOX])
86+
client = messagebird.Client('YOUR_ACCESS_KEY', features=[messagebird.Feature.ENABLE_CONVERSATIONS_API_WHATSAPP_SANDBOX])
8787
```
8888

8989
Documentation

0 commit comments

Comments
 (0)