Leiste mit Community-Erfolgen erweitern.

Mark Solution

Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.

GELÖST

Is there an SDK I can use for the data insertion API?

Avatar

Level 2

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

Themen

Anhand von Themen werden Community-Inhalte kategorisiert und Sie können so relevanten Inhalt besser finden.

1 Akzeptierte Lösung

Avatar

Korrekte Antwort von
Employee

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`.

Lösung in ursprünglichem Beitrag anzeigen

4 Antworten

Avatar

Korrekte Antwort von
Employee

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`.

Avatar

Level 2
Thanks for the update. I'll continue on with the node-fetch approach. Thanks

Avatar

Employee

You can use this lib.

https://www.npmjs.com/package/adobe-analytics-di

 

Its a little dated but it works.

Avatar

Employee
Maintainer of the lib is a slacker