You can use https://requestbin.fullcontact.com/ to help you troubleshoot sending streaming data to your Initial State account.
This can help with debugging streaming or webhook configuration.
Note: This is not a preferred method for troubleshooting streaming from the ISStreamer Python or NodeJS library but is intended to help with custom streaming connections.
Step 1
Go to https://requestb.in and create a RequestBin:
Step 2
A Bin URL will be generated. In the example below, the bin URL is https://requestb.in/1jaztqf1 . Copy this bin URL as it will be used to troubleshoot your application.
Step 3
Replace the Initial State API endpoint with the bin URL. For example, if you are troubleshooting sending data through URL parameters, you would have a URL that looks like this:
https://groker.initialstate.com/api/events?accessKey=P8L1...&bucketKey=dst0607&myNumber=20
In this example, you would replace everything to the left of the ? with the bin URL:
https://requestb.in/1jaztqf1?accessKey=P8L1...&bucketKey=dst0607&myNumber=20
Run your application (or in this example, send the URL via an HTTPS POST or GET).
Step 4
Refresh your RequestBin page. In this example, the RequestBin URL for inspecting your request is https://requestb.in/1jaztqf1?inspect :
Here you will see all of the parameters, headers, body, and settings of your request. Note in the example above, you can see the three parameters used on the left under the QUERYSTRING section - myNumber, bucketKey, and accessKey.
Use this information to troubleshoot your request.
Comments
0 comments
Article is closed for comments.