Hi Experts,
I am trying to send POST request using HTTP connector. The Odata API required x-csrf-token to be sent as well. I could fetch token from previous GET request and trying to pass it to subsequent POST request. Though I could see it as input, API returns with a message 403 and CSRF token validation failed. The same works with POSTMAN. Please suggest.
Input :
Raw input :
Output
Regards,
Had the same issue for days and figured it out today:
You need to submit the session cookie, which you will find in the "set-cookie" header of your GET request.
This needs to be passed to the POST request. Unfornately this can't be done using a custom connector.
I used a normal http request for this. You can set a Cookie Attribute there.
For the info from "set-cookie" you need to replace "," with ";" before passing it to your POST-Request.
can you plz elaborate and give the syntax for the post method
Is it resolve? I am also getting the same error.
User | Count |
---|---|
103 | |
36 | |
29 | |
25 | |
16 |
User | Count |
---|---|
136 | |
54 | |
53 | |
36 | |
26 |