Hi Max,
Apparently this is a bug, I have made a report for it. You can find it here: https://github.com/adobe/aio-cli/issues/363
Thanks for flagging this!Regards,
Hi Dominik,
What do the logs say? Does data contain a JSON value? Can you check on response.ok?
Maybe the endpoint is returning a message as its response, can you try
response.text()
if `response.json()` is empty.
Regards,
I think you can use a transform for that purpose, no need for an extra action built. I also tried to build the project without API service IO management there and I get the same error.
Hi Max,
You might have to setup separate credentials for the oath2, you can find this in left menu as seen in below screenshot. Let me create a test project and get back to you.
Regards,
Hi Bartek,Did you add any authentication header when calling the action? My first guess would be that you are trying to call the action but get an authentication error. Try to view the logs of the individual activation's.
aio rt activation list
and then
aio rt activation log <activation_id>
There sh...
Correctasync function functionName(payload) <-- here you are just renaming `params` to `payload`. The contents are still the same, payload and headers. If you debug params what attributes do you see? I think you can just filter out anything that starts with `__ow_`Something like this:/**
*
* Retur...
I take it that you request the Bearer token with the same domain but different path/endpoint?How are you passing the parameters for the search API? Double check that headers and body are passed in the same way. I suggest also trying library make-fetch-happen in my experience this library has more op...
Hi Jose, I understand that the response is 200, what are the response times? How long does it take for the API to respond in Postman. A 503 response usually means that the service is unavailable. That's why I was thinking of IP block. Are you using either fetch or node-fetch? Do you mean by open tha...