Cannot deploy at.js code 2.0 over Adobe Launch | Community
Skip to main content
Level 3
March 7, 2019
Solved

Cannot deploy at.js code 2.0 over Adobe Launch

  • March 7, 2019
  • 1 reply
  • 2308 views

Hi all,

I've been trying for several days now to get the at.js 2.0 running for SPAs, until I finally found the documentation​. Now that I got it to work using the adobe.target.getOffers() & adobe.target.applyOffers() function I cannot insert the code over Launch because the editor shows an error and the minifying of custom code fails. See screenshots below. Any ideas how this will work out?

Editor:

Build:

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by KRAZ

Okay I found the solution in the documentation of .then().

Here is the rewritten code:

adobe.target.getOffers({

  request: {

    "prefetch": {

      "views": [{}]

    }

  }

})

.then( function(response) { adobe.target.applyOffers({ response: response }); })

.then( function() { console.log("Success"); })

.catch( function(error) { console.log("Error", error)});

1 reply

KRAZAuthorAccepted solution
Level 3
March 8, 2019

Okay I found the solution in the documentation of .then().

Here is the rewritten code:

adobe.target.getOffers({

  request: {

    "prefetch": {

      "views": [{}]

    }

  }

})

.then( function(response) { adobe.target.applyOffers({ response: response }); })

.then( function() { console.log("Success"); })

.catch( function(error) { console.log("Error", error)});