Chapter 5 - Authoring Content Services Pages
Chapter 5 of the AEM Headless tutorial covers creating the Page from the Templates defined in Chapter 4. The page create in this chapter will act as the JSON HTTP end-point for the Mobile App.
/content/wknd-mobile/en/api
has been pre-built. The base pages of en
and api
serve a architectural and organizational purpose, but are not strictly required. If API content may be localized, it is best practice to follow the usual Language Copy and Multi-site Manager page organization best-practices, since API page can be localized like any of AEM Sites page.Creating the Event API Page
-
Navigate to AEM > Sites > WKND Mobile > English > API.
-
Tap the label the API page, then tap the Create button in the top action bar and create a new Events API page under the API page.
- Tap Create in the top action bar
- Select Events API template
- In the Name field enter events
- In the Title field enter Events API
- Tap Create in the top action bar to create the page
- Tap Done to return to the AEM Sites admin
Authoring the Events API Page
-
Edit the Events API page by navigating to AEM > Sites > WKND Mobile > English > API, selecting the Events API page, and tapping Edit in the top action bar.
-
Add a logo image to display in the app by drag-and-dropping it from the Asset Finder onto the Image component placeholder.
- Use the provided logo found at
/content/dam/wknd-mobile/images/wknd-logo.png
.
- Use the provided logo found at
-
Add tag line to display above the events.
- Edit the Text component
- Enter the text:
The WKND is here.
-
Select the events to display:
-
Set the following configuration on the Properties tab:
- Model: Event
- Parent Path: /content/dam/wknd-mobile/en/events
- Tags: <Leave blank>
-
Set the following configuration on the Elements tab:
- Remove any listed elements, to ensure ALL elements of the Event Content Fragments are exposed.
-
Review the JSON output of the API page
The JSON output and its format can be reviewed by requesting the Page with the .model.json
selector.
This JSON structure (or schema) must be well understood by consumers of this API. It is critical API consumers understand which aspects of the structure are fixed (ie. the Event API’s Logo (Image) and Tag live (Text) and which are fluid (ie. the events listed under Content Fragment List component).
Breaking this contract on a published API, may result in incorrect behavior in the consuming Apps.
-
In new browser tabs, request the Events API pages using the
.model.json
selector, which invokes AEM Content Services’ JSON Exporter, and serializes the Page and Components into a normalized, well defined JSON structure.The JSON structure produced by these pages is the structure consuming apps must align to.
-
Request the Events API page as JSON.
The result should appear similar to:
.tidy
selector:Next step
Optionally, install the com.adobe.aem.guides.wknd-mobile.content.chapter-5.zip content package on AEM Author via AEM’s Package Manager. This package contains the configurations and content outlined in this and preceding chapters of the tutorial.