This question runs in a pre-configured Salesforce environment - no personal connection required.
Create a method that fetches products from a specific category using the DummyJSON API and returns a list of product titles. The API endpoint is https://dummyjson.com/products/category/{category}. If the HTTP request fails or returns an error, return an empty list.
Examples:
Input: category = 'smartphones'
Output: ['iPhone 9', 'iPhone X', 'Samsung Universe 9', 'OPPOF19', 'Huawei P30']
Explanation: Returns list of smartphone product titles from the API
Input: category = 'laptops'
Output: ['MacBook Pro', 'Samsung Galaxy Book', 'Microsoft Surface Laptop 4', 'Infinix INBOOK', 'HP Pavilion 15-DK1056WM']
Explanation: Returns list of laptop product titles from the API
Input: category = 'invalid-category'
Output: []
Explanation: Returns empty list for invalid category
Apex Code Editor
Welcome to Lightning Challenge!
Create an Account
Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.
Create accountHow It Works
- • Write your solution in the code editor
- • Connect your Salesforce org to test
- • Submit to check if your solution passes
- • Use hints if you get stuck
Note
You can test your code by connecting to Salesforce, but to save your progress and earn points, you'll need to create an account. Your solutions and achievements will be tracked automatically once you're logged in.