I just started working on Day 6 Challenge and I see that requests arenāt being sent and Iām getting this error
I have the same problem with 30 Days of Postman challenge. (Day 27: Scenario testing, Error: connect ECONNREFUSED 44.194.250.4:80)
Could you give the name of API for Day 6 of 15 Days of Postman challenge?
The API for this challenge is called the Good Bank API
+1
http://security.postman-breakable.com refuses connection
Hey everyone, while we figure out while this doesnāt work can you try using either of these instead?
https://www.unbreakableapi.com/
https://unbreakable-api.herokuapp.com/
If these still donāt work please bear with us while we work on a fix and move on to the next day in the meantime!
I found your requests doesnāt work for mine. It give me the error Not Found
Could you help me to figure out what am I missing ?
Thank you
I think weāll have to wait for a fix, as @arlem suggested. The two new URLs/endpoints ending with ā/userā do not work (404 Not Found).
It seems that three of the URLs arenāt working at all.
- https://www.unbreakableapi.com/
- https://unbreakable-api.herokuapp.com/
- http://security.postman-breakable.com/user
I will try again in the next few days. By the way, I would like to know if the Body request of this API will be like this:
{
āusernameā: " ",
āpasswordā: " "
};
May you have a look and tell me if it is right or wrong. Thank you so much.
Hey everyone!
Looks like itāll be a bit longer than planned to get this back up and running, in the meantime Iāve disabled the tests from our end so you can still submit for the badge and not get stuck by it.
Iāll keep everyone updated when itās fixed so you can give it a try later.
Apologies for this!
Aaaaand weāre back! You can now use the http://security.postman-breakable.com/
again.
Thank you all for your patience.
@keerthanavenu The API response tells you why itās not working
Herās an example :
username : John
password : 123RTYfgh
- The
^
is an anchor that ties this position of the regex to the start of the line. - The
[0-9]
is a character list and will match any single character that falls into the sort range between0
and9
. - The
[a-zA-Z]
again is a character list and will match characters(1) that fall betweena
andz
and in addition those that fall betweenA
andZ
. - The
+
means āone or more of the previousā - The
$
is an anchor that ties this position of the regex to the end of the line.