Football Web Pages APEX application
In the last article, we created a simple APEX application fetching data about English football from the Football Web Pages site which provides an authenticated REST API.
However, all I really want to do is to quickly look at Kingstonian’s forthcoming fixtures for the next month. Fortunately, there is an FWP API providing that information.
Endpoint: https://football-web-pages1.p.rapidapi.com/fixtures-results.json
- Matches - The current list of matches for a competition/team
- The following parameters may be set:
- comp - The ID of the competition (note: one of “comp” or “team” is required)
- team - The ID of the team (note: one of “comp” or “team” is required)
We already have created an APEX report listing all the available Competitions (including the numeric ID values) so it would be useful to have a similar report listing all the Teams.
Read morea simple APEX application using REST API
Introduction
The last article provided a quick introduction to REST APIs. Now we will use a simple REST API to develop an APEX application using a real world example.
Football Web Pages
I enjoy watching football (soccer). My local team are Kingstonian FC, a non-league team in South West London. Kingstonian play in the seventh tier of English football. Kingstonian’s players are semi-professional so the players hold down jobs and train and play part-time.
Read moreMasking sensitive fields in APEX
Data masking with APEX
Background
A common customer requirement is to mask sensitive or personally identifiable data from APEX reports.
Oracle has a ‘Data Masking and Subsetting’ product that performs this task.
However, for smaller APEX projects, the full blown data masking product might be overkill as it needs familiarity with the product and configuration. This may be time consuming and expensive.
However, we are able to use the PL/SQL package DBMS_REDACT to achieve the same result.
Read moreAgile development with Oracle APEX
Tim Hall recently made a wonderful suggestion that the Oracle community remember the much missed Joel Kallman on 11 October 2021.
My contribution doesn’t demonstrate APEX technical wizardry. Instead it’s a short story from a real-life customer project implemented using APEX. Just to avoid any potential law suits, this post isn’t about Agile development either - more how APEX can be used to quickly respond to changing customer requirements.
One particular post from Joel stuck with me about his attitude to customer service which can be encapsulated in a single line:
Read more