Is it possible to execute server side code (something like Parse "Cloud Code") with Apigee, as backend for a mobile app as client?
I'd want to use the out of the box "App Services" functionality, but perform some extra stuff (like updating data) from the server side,
The only (naive?) way I can think of is this:
- Have my own server running.
- The mobile app uses standard "App Services" API on Apigee
- If necessary, the client calls
- some custom API on my server,
- which lets my server call Apigee via REST to fetch data, calculate some results, and post the updated data Apigee
- and then returns the result to the client
Sounds a bit complicated (especially in terms of handling authentication) - are there any best practices to achieve something like I described?
Thanks!