How to continue node even though HTTPrequest fail

i want to do like this code:

items.forEach(item => {
    fetch(url)
    .then(res => {
        if(res != 200) continue;
        else {
            ....
        }
    });
});

iow, i want to continue node when http reqest fail.

please give me any idea.

Hey @hoshino, I assume you’re using the HTTP Request node? If so, you could add and enable the Ignore Response Code option, allowing you to do just that:

image

1 Like

Sorry for not replying sooner and Thank you so much,@MutedJam !
I did it !

1 Like

No problem at all, I was off for a few days anyway :smiley:

Glad to hear this helped, many thanks for confirming!

1 Like