We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 08163d9 + 1ee083a commit cc31874Copy full SHA for cc31874
README.md
@@ -59,8 +59,12 @@ Please follow the [installation procedure](#installation--usage) and then run th
59
60
```python
61
import onesignal
62
+from onesignal.api import default_api
63
64
# See configuration.py for a list of all supported configuration parameters.
65
+# Some of the OneSignal endpoints require USER_KEY bearer token for authorization as long as others require APP_KEY
66
+# (also knows as REST_API_KEY). We recommend adding both of them in the configuration page so that you will not need
67
+# to figure it yourself.
68
configuration = onesignal.Configuration(
69
app_key = "YOUR_APP_KEY",
70
user_key = "YOUR_USER_KEY"
0 commit comments