Janaki Narayanan
Janaki Narayanan

Reputation: 543

How to set preferences variables in oracle JET

enter image description hereWhile integrating Oracle MAF with Oracle MCS, Authorization variables like Mobilebackend Id,Anonymous Id are given by end user.They were actually given as preference variables.

This is the MAF Application where end user can manually set the Mobile Cloud Service Settings.Likewise ,how can I do the same in oracle JET ?

Whether I have to create global variables and assign them in below part?

var mcs_config = {

    "logLevel": mcs.LOG_LEVEL.INFO,

    "logHTTP": true,

    "mobileBackends": {

        "MyJETApp": {

            "default": true,

            "baseUrl": "https://xx.mobileenv.us2.oraclecloud.com:443",

            "applicationKey": applicationkey,

            "authorization": {

                "basicAuth": {

                    "backendId": "e53739ff-bea5-4250-8cf4-967798cbd497",

                    "anonymousToken": "UE1FTkFCTEVGRUIxN19QTUVOQUJMRUZFQl9NT0JJTEVfQU5PTllNT1VTX0FQUElEOkxpdjB3YXpwcy55ZDZn"

                }

            }

        }

    }

};

Thanks in advance.

Upvotes: 0

Views: 335

Answers (1)

Chris Muir
Chris Muir

Reputation: 445

Oracle is publishing videos on JET+MCS here: https://www.youtube.com/playlist?list=PL2ux0DjE-RYe-B3jPw1P6kuqsz7OMu6W1

The first video shows you how to configure the MCS client SDKs with JET, which will address your question.

The following article also describes the process: https://dzone.com/articles/how-to-mash-up-jet-and-mcs-mobile-apps

Upvotes: 0

Related Questions