Overview
The OpenPage Launcher allows you to create and manage experiences that can be launched directly on the OpenPage platform. When users access your experience through the launcher, they receive a JWT token that enables seamless authentication and reward distribution.Key Features
- Experience Management: Create and configure experiences for your applications
- JWT Authentication: Automatic token-based authentication for launched experiences
- Reward Integration: Distribute badges and rewards directly from your launched experience
- Testing Tools: Built-in tools to test and validate JWT tokens
Getting Started
Create an Experience
Learn how to create and configure experiences in the OpenPage Portal.
External Experiences
Set up external experiences that can be launched from OpenPage.
JWT Testing
Test and validate JWT tokens for your experiences.
JWT Testing
Once you’ve created an experience, you can test the JWT token functionality to ensure your integration works correctly.1. Launch Your Experience
- Navigate to your experience in the OpenPage Portal
- Click Launch Experience to generate a test URL
- The URL will contain a JWT token parameter:
https://yourexperience.com?token=eyJhbGciOiJIUzI1...
2. Extract and Test the JWT
You can extract the JWT token from the URL and test it using various methods:Using cURL
Using JavaScript
3. Validate Token Structure
The JWT token contains important information about the user and experience:Make sure to validate the JWT token on your server side before processing any requests. The token should be verified using the secret key provided in the OpenPage Portal.