Is it possible to create a T&T plugin via the API? I've seen people create plugins to pass T&T AB test data to Google Analytics and other analytics packages, and would like to do this via the T&T API because I have several clients using T&T. I'm trying to pass T&T events to Snowplow Analytics.
Plugins require two steps - (1) HTML Offer and (2) Javascript Plugin that references the HTML Offer. It seems like you can create an HTML Offer via the API, but I don't see how to create the Javascript Plugin programmatically via the API.
You can create a plugin in Test and Target using offers. In your offer code you can get T&T values and pass them to GA or any other analytics platform.
var Campaign = '${campaign.name}';
var Recipe = '${campaign.recipe.name}';
Here is full blog post about this:
http://www.blastam.com/blog/index.php/2012/08/how-to-integrate-adobe-test-target-sitecatalyst-google-analytics
Related
Recently I have been working on a project that requires GTM, GA & GO to be installed on a website.
Is there an optimal way to install all 3 onto the website without requiring copying of 3 individual code spinnets?
If we do require 3 individual code spinnets, What is the correct order to place the spinnets?
Not having to install multiple separate snippets is pretty much the point of a tag management system.
Create a Google Tag Manager Container and install the code snippet in the head of your page (that is the recommendation, but it will work pretty much everywhere else).
Then go to your container settings. In "Tags", click new. You will see tag templates for both Google Analytics (both Universal Analytics and GA4) and for Google Optimize (Documentation for Optimize with GTM is here, although it is slightly confusing). Basically you create a tag with the respective template, drop your tracking ids in, create a trigger that says when the tag will be executed and then publish your container.
You might want to have a look at the online courses Google offer for GTM: https://analytics.google.com/analytics/academy/course/5 to make best use of GTM.
I can't find the simple answer for a simple question. I want to generate a link to my app on Google Play and check how many installs comes from this link.
For iOS this is very simple, you just go to the analytics ->sources and generate a link that has a parameter. I can't find anything like that in Google Play Developer Console. Am I missing something or there is not such option for GP?
You could use Firebase Dynamic Links.
More information here: https://firebase.google.com/docs/dynamic-links
You can create Dynamic Links using your own domain name:
https://example.com/summer-sale
https://example.com/links/promos/summer-sale
https://links.example.com/summer-sale
https://ex.amp.le/summer-sale
Or, if you don't have a domain for your app, you can use a free custom page.link subdomain:
EXAMPLE LINK: https://example.page.link/summer-sale
Create your free subdomain in the Firebase console.
All Dynamic Links features, including analytics, post-install attributions, and SDK integrations, work with both custom page.link domains and your own domain.
I am looking to build a wordpress website with GatsbyJS (so no PHP usage. Just using Wordpress API and react JSX on the front-end).
I know I can get any core wordpress data at /wp-json route, but I'm not sure about plugin data. I've tried to look up plugin data and it does not seem to be included in wp-json.
I found this "compatible plugins" page: https://v2.wp-api.org/guide/plugins/
Does this mean that for most other plugins data would not be present in the Wordpress API?
Correct. Unless these plugins expose their data via the REST API (either by extending the existing endpoints or by creating their own, like some plugins do), you won't be able to access it.
In such cases, you either ask the developers to expose their plugin's data via the REST API or you code some custom endpoints yourself to get the data you need from them.
I'm able to create a dynamic link through API request in jquery but to get data back I couldn't find any documentation on it. please advise..
This wasn't possible initially, but recently the Dynamic Links analytics API has launched, take a look at the docs here: analytics api docs: https://firebase.google.com/docs/dynamic-links/analytics#rest_api
Is it possible to get a list of Form objects via the API yet?
I can't seem to find anything promising in the developer docs, but was hoping it would be in the Asset or Program Object APIs.
I would like to be able to pull a list of available forms into my website CMS via a custom plugin, so I can get the IDs of the forms to easily embed them into the CMS templates.