-
Notifications
You must be signed in to change notification settings - Fork 0
Visited aisles 912ae9
AT Internet’s SDK allows you to tag your product “aisles” or sections.
This is a navigation analysis specific to eCommerce applications enabling you to categorise the different screens proposing your products (latest collection, sales items, etc.). The objective is to have a panoramic view of the aisles your users visit. We consider visited aisles as areas of your site users have visited. It is therefore possible to have aisles like “Today’s deals”, “Sales”, “New reductions”, “New products”, etc. that contain the same product, depending on how that product is classified (its “category”).
Once your tag is initialised, you can add information about visited aisles to your screen hit.
If you want to use variables, be sure to import ATInternet, Tracker, Screen and Aisle classes in your Activity.
The Screen object makes an Aisle method available. This method takes one parameter :
- level1 of type String indicates the first aisle level
- Screen tagging with one level of aisles
package com.atinternet.atinternetdemo;
import android.app.Activity;
import android.os.Bundle;
import com.atinternet.tracker.ATInternet;
import com.atinternet.tracker.Tracker;
public class MainActivity extends Activity {
private Tracker tracker;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tracker = ATInternet.getInstance().getDefaultTracker();
}
@Override
protected void onResume() {
super.onResume();
Screen s = tracker.Screens().add("High Tech");
s.Aisle"10[high_tech]");
s.sendView();
}
}- Screen tagging with several levels of aisles
package com.atinternet.atinternetdemo;
import android.app.Activity;
import android.os.Bundle;
import com.atinternet.tracker.ATInternet;
import com.atinternet.tracker.Tracker;
public class MainActivity extends Activity {
private Tracker tracker;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tracker = ATInternet.getInstance().getDefaultTracker();
}
@Override
protected void onResume() {
super.onResume();
Screen s = tracker.Screens().add("Laptops");
s.Aisle("10[high_tech]")
.setLevel2("20[Computers_network]")
.setLevel3("30[Computers]")
.setLevel4("40[laptops]");
s.sendView();
}
}| Name | Type | Default value | Description |
|---|---|---|---|
| level1 | String | null | Gets or sets the first level of aisles |
| level2 | String | null | Gets or sets the second level of aisles |
| level3 | String | null | Gets or sets the third level of aisles |
| level4 | String | null | Gets or sets the fourth level of aisles |
| level5 | String | null | Gets or sets the fifth level of aisles |
| level6 | String | null | Gets or sets the sixth level of aisles |
Last update: 04/03/2020
-
Data API
- Data flow
- Advice optimizations data flow
- Error codes data flow
- Faq data flow
- General information data flow
- Technical information data flow
- Reporting API v3
- Getting started
- Methods
- Parameters
- Technical information
- REST API
- Campaigns
- Custom variables
- Getting started rest
- Methods rest
- Response structure parameters rest
- Fixed periods
- Parameters compatibility
- Relative periods
- Structure of the response
- “code” parameter
- “columns” parameter
- “evo” parameter
- “filter” parameter
- “include” parameter
- “lng” parameter
- “max-results” parameter
- “page-num” parameter
- “period” parameter
- “period” parameter: “H” v. “He” & “MN” v. “MNe”
- “retention” parameter
- “segmentdesc” parameter
- “segment” parameter
- “sep” parameter
- “sort” parameter
- “space” parameter
- Technical specifications rest
- Data flow
-
Data collection
- Android
- Advanced features
- Campaigns
- Changelog
- Content
- Ecommerce
- Getting started
- Users
- Apple
- Advanced features
- Campaigns
- Changelog
- Content
- Ecommerce
- Getting started
- Users
- General
- Cddc renew staging process
- Changelog
- Craft your hit
- Encoded parameters
- Server side cookie management
- Supported taggings
- Tagging deletion
- Utilisation of dispatch sdks
- JavaScript
- Advanced features
- Campaigns
- Changelog
- Content
- Ecommerce
- Getting started
- Partners javascript
- Users
- Piano Analytics
- Event tagging piano analytics
- Getting started piano analytics
- Piano analytics tagging
- Feeding piano analytics with as2 tagging
- Tagging custom properties sdk
- Android