Error when trying to send image to wordpress

Hi!

I have a worflow where ai agents create a blog and an image and send them to my wordpress. It was working perfectly fine. However, without that i changed anything now i always get an error when my http request is trying to send it to wordpress.

This is the error i Receive: Problem in node ‘HTTP Request‘

The connection timed out, consider setting the ‘Retry on Fail’ option in the node settings.

This are the settings of my node:

{
“nodes”: [
{
“parameters”: {
“method”: “POST”,
“url”: “https://deaimeesters.com/wp-json/wp/v2/media”,
“authentication”: “predefinedCredentialType”,
“nodeCredentialType”: “wordpressApi”,
“sendQuery”: true,
“queryParameters”: {
“parameters”: [
{
“name”: “alt_text”,
“value”: “={{ $(‘SEO AI Agent’).item.json.output.seo_alt_text }}”
},
{
“name”: “title”,
“value”: “={{ $(‘SEO AI Agent’).item.json.output.seo_alt_titel }}”
},
{
“name”: “description”,
“value”: “={{ $(‘SEO AI Agent’).item.json.output.seo_alt_description }}”
},
{
“name”: “caption”,
“value”: “={{ $(‘SEO AI Agent’).item.json.output.seo_alt_caption }}”
}
]
},
“sendHeaders”: true,
“headerParameters”: {
“parameters”: [
{
“name”: “content-disposition”,
“value”: “={{ attachment; filename=${$('SEO AI Agent').item.json.output.seo_image_filename} }}”
},
{
“value”: “={{ $binary.data.mimeType }}”
}
]
},
“sendBody”: true,
“contentType”: “binaryData”,
“inputDataFieldName”: “data”,
“options”: {
“timeout”: 600000
}
},
“type”: “n8n-nodes-base.httpRequest”,
“typeVersion”: 4.3,
“position”: [
16096,
384
],
“id”: “1c30fb55-599a-4513-a9b0-50659e5da697”,
“name”: “HTTP Request”,
“retryOnFail”: true,
“credentials”: {
“wordpressApi”: {
“id”: “wrBnAtIn57WqdU0X”,
“name”: “Wordpress account”
}
}
}
],
“connections”: {
“HTTP Request”: {
“main”: [

]
}
},
“pinData”: {},
“meta”: {
“instanceId”: “1ddd1cb5022722f0b813f5bff507a91d557b32665482d3db2eff5b79ef8b16de”
}
}

Kan someone help?

Maybe something is wrong with the https endpoint? like it expired or something?