You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+31-1Lines changed: 31 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -149,5 +149,35 @@ def index(request):
149
149
# There was an error validating the request
150
150
# Use your own logging framework to log the error
151
151
# This was a configuration error, so we let the user continue
152
-
print stdErr.message
152
+
print stdErr.message
153
+
```
154
+
155
+
## Request body trigger (advanced)
156
+
157
+
The connector supports triggering on request body content. An example could be a POST call with specific item ID where you want end-users to queue up for.
158
+
For this to work, you will need to contact Queue-it support or enable request body triggers in your integration settings in your GO Queue-it platform account.
159
+
Once enabled you will need to update your integration so request body is available for the connector.
160
+
You need to create a new context provider similar to this one:
161
+
162
+
```python
163
+
from queueit_knownuserv3.http_context_providers import Django_1_8_Provider
0 commit comments