Initialization
Integrating TyrAds web is easy and can be done by just passing the url in the in-app-browser or iframe:
Just replace the following values with your own.
YOUR_API_KEY
YOUR_API_SECRET
CUSTOMER_USER_ID
Deeplinking Routes
The Tyrads SDK supports deeplinking to specific sections of the offerwall. When initializing or interacting with the SDK, you can specify a route to open a particular page. For campaign-specific routes, you'll need to provide the campaignID as well.
Available routes and their usage:
campaigns
- opens the Campaigns Pagecampaigns-activated
- opens the Activated Campaigns Pagecampaign-details
- opens the Campaign Details Page (requires campaignID)campaign-tickets
- opens the Campaign Tickets Page (requires campaignID)
If your website is using html, you can use the following steps to integrate TyrAds web:
add an iframe to your page
provide the source URL dynamically to the iframe src attribute
Localization
Introduction
Localization is a crucial feature that allows our application to support multiple languages, enhancing user experience across different regions. This documentation explains how to use the localization feature in our application, both through URL parameters and internal web application settings.
Localization via URL Parameters
Overview
To specify the language for our application using URL parameters, you can append the lang
parameter to the URL. This method is useful for direct linking to language-specific pages.
Supported Languages
The following languages are supported:
English (en)
Spanish (es)
Indonesian (id)
Korean (ko)
Japanese (ja)
Usage Example
To access the application in Korean, you would use the following URL:
Localization Inside the Web Application
Overview
In addition to using URL parameters, the web application itself can change the localization settings. This allows users to switch languages directly within the application.
Supported Languages
The same set of languages is supported as with the URL parameter method:
English (en)
Spanish (es)
Indonesian (id)
Korean (ko)
Japanese (ja)
Usage
Access the Localization Settings: Navigate to the settings or preferences section of the web application.
Select Language: Choose your preferred language from the list of supported languages.
Apply Changes: Save your selection to update the application's language.
Best Practices
URL Encoding: When using URL parameters, ensure that special characters are properly encoded to avoid errors.
Language Codes: Use standard ISO language codes (e.g.,
en
for English) for consistency and compatibility.Testing: Always test the application in each supported language to ensure proper rendering and functionality.
Troubleshooting
Unsupported Languages: If a language is not supported, the application may default to a fallback language English (
en
).
Last updated