


Hi Team,
My requirement is to set a custom header in the request which Adobe IO makes to the 3rd party API. It is a GET request. Can anyone suggest how can i achieve this. This is Adobe provided code-base, so i am not able to find where is the actual request getting triggered in Adobe IO.
Regards,
Saleem
Views
Replies
Total Likes
Hi @saleemr22640314 - is your question specifically about writing an Adobe I/O Runtime action making GET requests to 3rd party API? The action is written in node.js, and you could leverage any HTTP request library such as node-fetch.
If you ask about other Adobe I/O services, please post this to the respective forum so that those teams will provide more specific support.
Views
Replies
Total Likes
Views
Replies
Total Likes
Ok - as mentioned earlier you could add custom headers using any HTTP lib. Example with node-fetch:
fetch('https://example.com/getUser', {
method: 'get',
headers: { 'X-My-Custom-Header': 'value-v' }
})
Views
Replies
Total Likes