


I've been given a CURL request that builds on this API... https://helpx.adobe.com/uk/analytics/kb/data-insertion-api-post-method-adobe-analytics.html.
And at the moment I am building this request manually in my project firefly action.
I was wondering if there's an SDK I can install using NPM that will provide some convenience methods around this instead of building the request manually?
Thanks
Views
Replies
Sign in to like this content
Total Likes
Hi @oliverf82757722 , the Firefly SDK for Adobe Analytics only supports the API 2.0.
Unfortunately the Data Insertion API is only available in API 1.4, not 2.0, according to: https://www.adobe.io/apis/experiencecloud/analytics/docs.html#!AdobeDocs/analytics-2.0-apis/master/m....
Hence, you would need to make the HTTP requests using `node-fetch`.
Hi @oliverf82757722 , the Firefly SDK for Adobe Analytics only supports the API 2.0.
Unfortunately the Data Insertion API is only available in API 1.4, not 2.0, according to: https://www.adobe.io/apis/experiencecloud/analytics/docs.html#!AdobeDocs/analytics-2.0-apis/master/m....
Hence, you would need to make the HTTP requests using `node-fetch`.
Views
Replies
Sign in to like this content
Total Likes
You can use this lib.
https://www.npmjs.com/package/adobe-analytics-di
Its a little dated but it works.
Views
Replies
Sign in to like this content
Total Likes