Simple POST method is not working in Karate API, which works fine in POSTMAN, getting error as below
ERROR com.intuit.karate - java.net.ConnectException: Connection ref
You haven't read the documentation and you did not realize this is an HTML form submit. The Content-Type
should have given you a hint. Here is your solution:
Given url 'https://api.stripe.com/v1/customers'
And header Authorization = 'Bearer sk_test_Y566a568oL0lbYwRurOvJ4g6'
And form field email = 'test1@test.com'
And form field name = 'vivek'
And form field description = 'Test'
When method post
Then status 200