Posting to LinkedIn from Oracle APEX: A Complete Beginner's Guide Free oracleapex.com tier · personal LinkedIn profile posting · step-by-step with every real error included If you've ever wanted a button in your Oracle APEX app that posts directly to your personal LinkedIn feed — no Zapier, no third-party middleman, just your own APEX app talking straight to LinkedIn's API — this guide walks through the whole thing, start to finish, including every mistake made along the way so you don't have to repeat them. By the end, you'll have: A LinkedIn Developer App configured for personal posting Two APEX pages: one to connect/authorize, one that handles LinkedIn's callback and does the posting A working "Post to LinkedIn" button that publishes text posts to your own profile This is written for a free oracleapex.com workspace, but the same steps work on any hosted or on-premises APEX instance — just adjust the domain. The Big Picture ...
APEX Integration with Gmail Notifications Introduction In many Oracle APEX applications, users want to see Gmail notifications directly within the application without opening Gmail. In this article, we will build a Gmail notification badge that displays the number of unread emails in the APEX Navigation Bar. Final Output Notification bell in the Navigation Bar Displays unread Gmail count Automatically refreshes every 60 seconds Works across the entire APEX application using the Global Page (Page 0) Architecture Gmail ↓ Google Apps Script ↓ REST Web App ↓ Oracle APEX (Page 0) ↓ Navigation Bar Badge Prerequisites Oracle APEX (Works on apex.oracle.com) Personal Gmail account Google Apps Script Internet access 1 Create a Google Apps Script Project Open https://script.google.com/ Click New Project. Rename the project. Ex: APEX Gmail Notification 2 Write the Google Apps Script Replace the default code with the following: ...