I am using REST implmentation for azure Datastore instead of "azure-storage" SDK, while inserting entity in datastore table,i am getting below error,
and statuscode return here is 400.
I referred this documentation docs and everything(like Authorization using hashmac, timestamp, header, json body etc) is formed correctly as per my understanding, but seems its not working, however same header and json body i have been passed through postman and its worked. Now question is here through REST why its not inserting entity in datastore table. Azure-Datastore version used: 2016-05-31.
REST API implementation: using nodejs/typescript.
anybody have found this issue ever before and did know the possible root cause and solution.
The error code's meaning can be found in CommonRestApiErrorCodes and TableServiceErrorCodes.
As your description, the error would be: InvalidInput Bad Request (400) One of the request inputs is not valid.
To trouble shoot the issue which input is invalid, please try to use tools like fiddler, catch the request sent by your tool, and:
BTW, Would you please share your concern on using Azure storage node client library?
Best Wishes