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
I believe it's a mistake in either the doc / code:
A simple POST request like this doesn't work: req({ url: queueUrl, headers: { 'Content-Type': 'text/xml' }, method: 'POST', data: asdfasdfasdfasdf}, ....
And the reason is due to "data" is not a valid property for options.
Seems like you're using "_data" for the options.
After i changed to use "_data", it works flawlessly.
The text was updated successfully, but these errors were encountered:
Hi,
I believe it's a mistake in either the doc / code:
A simple POST request like this doesn't work:
req({ url: queueUrl, headers: { 'Content-Type': 'text/xml' }, method: 'POST', data:
asdfasdfasdfasdf}, ....
And the reason is due to "data" is not a valid property for options.
Seems like you're using "_data" for the options.
After i changed to use "_data", it works flawlessly.
The text was updated successfully, but these errors were encountered: